Skip to content

Commit

Permalink
Specify semver range for Python 3.11 (#901)
Browse files Browse the repository at this point in the history
This change allows GitHub Actions to automatically pick the most recent version of Python 3.11, including pre-releases.
  • Loading branch information
mportesdev committed May 18, 2022
1 parent 7104b33 commit 9705a71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
strategy:
matrix:
python-version: [
["3.7", "37"], ["3.8", "38"], ["3.9", "39"], ["3.10", "310"], ["3.11.0-alpha.7", "311"]
["3.7", "37"], ["3.8", "38"], ["3.9", "39"], ["3.10", "310"], ["3.11.0-a - 3.11", "311"]
]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit 9705a71

Please sign in to comment.