Skip to content

Commit

Permalink
add Python 3.10 to CI testing and binary wheels
Browse files Browse the repository at this point in the history
A Python 3.10 binary wheel for v0.2.1 of this library will be pushed to
PyPI from this commit.
  • Loading branch information
oconnor663 committed Dec 16, 2021
1 parent 1c0b61e commit e54c5a9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/maturin_build_wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
(3, 7): "cp37-cp37m",
(3, 8): "cp38-cp38",
(3, 9): "cp39-cp39",
(3, 10): "cp310-cp310",
# This list needs to be kept in sync with push.yml and tag.yml.
}
version_component = version_path_components[sys.version_info[:2]]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ${{ matrix.platform.os }}
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9] # This list needs to be kept in sync with tag.yml and maturin_build_wheel.py.
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] # This list needs to be kept in sync with tag.yml and maturin_build_wheel.py.
rust-toolchain: [stable, beta, nightly]
platform: [
# This list should be kept in sync with tag.yml.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ${{ matrix.platform.os }}
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9] # This list needs to be kept in sync with push.yml and maturin_build_wheel.py.
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] # This list needs to be kept in sync with push.yml and maturin_build_wheel.py.
platform: [
# This list should be kept in sync with push.yml.
{ os: "ubuntu-latest", python-architecture: "x64", rust-target: "x86_64-unknown-linux-gnu", name: "Linux x64" },
Expand Down

0 comments on commit e54c5a9

Please sign in to comment.