-
Notifications
You must be signed in to change notification settings - Fork 18
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
0.4.0 #10
0.4.0 #10
Conversation
.github/workflows/package-test.yml
Outdated
@@ -14,7 +14,7 @@ jobs: | |||
strategy: | |||
fail-fast: false | |||
matrix: | |||
python-version: [3.7, 3.8, 3.9] | |||
python-version: [3.7, 3.8, 3.9, 3.10] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
GitHub actions does support py 3.10. You merely need to declare py versions as strings instead of numbers. E.g.:
python-version: ["3.7", "3.8", "3.9", "3.10"]
The problem you're encountering, is (presumably) that YAML parsing is trimming trailing zeros from numbers. Here's a similar issue I stumbled upon recently:
actions/setup-python#160 (comment)
Changes