Skip to content

Commit

Permalink
Merge pull request #649 from basnijholt/python-312
Browse files Browse the repository at this point in the history
Allow installing for Python 3.12
  • Loading branch information
NoureldinYosri authored Jan 25, 2024
2 parents 40fa45e + 4ffeb72 commit a9f3968
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ jobs:
- os: macos-12 # x86_64
name: mac
cibw:
build: "cp37* cp38* cp39* cp310* cp311*"
build: "cp37* cp38* cp39* cp310* cp311* cp312*"
- os: macos-13-large # Apple Silicon
name: mac_arm64
cibw:
build: "cp37* cp38* cp39* cp310* cp311*"
build: "cp37* cp38* cp39* cp310* cp311* cp312*"
- os: ubuntu-20.04
name: manylinux2014
cibw:
arch: x86_64
build: "cp37* cp38* cp39* cp310* cp311*"
build: "cp37* cp38* cp39* cp310* cp311* cp312*"
manylinux_image: manylinux2014
- os: windows-2019
name: win_amd64
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/testing_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ jobs:
- os: macos-12 # x86_64
name: mac
cibw:
build: "cp37* cp38* cp39* cp310* cp311*"
build: "cp37* cp38* cp39* cp310* cp311* cp312*"
- os: macos-13-large # Apple Silicon
name: mac_arm64
cibw:
build: "cp37* cp38* cp39* cp310* cp311*"
build: "cp37* cp38* cp39* cp310* cp311* cp312*"
- os: ubuntu-20.04
name: manylinux2014
cibw:
arch: x86_64
build: "cp37* cp38* cp39* cp310* cp311*"
build: "cp37* cp38* cp39* cp310* cp311* cp312*"
manylinux_image: manylinux2014
- os: windows-2019
name: win_amd64
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def build_extension(self, ext):
url="https://github.com/quantumlib/qsim",
author="Vamsi Krishna Devabathini",
author_email="[email protected]",
python_requires=">=3.7.0,<3.12.0",
python_requires=">=3.7.0",
install_requires=requirements,
setup_requires=["packaging"],
extras_require={
Expand Down

0 comments on commit a9f3968

Please sign in to comment.