8000 Fix ASC Reader start time by Tian-Jionglu · Pull Request #1788 · hardbyte/python-can · GitHub
[go: up one dir, main page]

Skip to content

Fix ASC Reader start time #1788

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8000
Prev Previous commit
Next Next commit
Allow release without tests
  • Loading branch information
hardbyte committed Jun 6, 2024
commit af196815692ce1b5e3a4fed9130190c1b6b5081f
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ jobs:
path: ./dist

upload_pypi:
needs: [build, test]
needs: [build]
runs-on: ubuntu-latest
permissions:
id-token: write
Expand Down
2 changes: 1 addition & 1 deletion can/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import logging
from typing import Any, Dict

__version__ = "4.3.2-rc.2"
__version__ = "4.3.2-rc.3"
__all__ = [
"ASCReader",
"ASCWriter",
Expand Down
0