Skip to content
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

Merged
merged 10 commits into from
Nov 28, 2021
2 changes: 1 addition & 1 deletion .github/workflows/package-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Copy link
Contributor

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)


steps:
- uses: actions/checkout@v2
Expand Down