From 2af5ad7314a5fa9d3ec47a200d8ca992985132c1 Mon Sep 17 00:00:00 2001 From: vtomole Date: Sun, 23 Apr 2023 20:04:20 -0500 Subject: [PATCH] Add python 3.11 to wheel list --- .github/workflows/release_wheels.yml | 6 +++--- .github/workflows/testing_wheels.yml | 6 +++--- docs/install_qsimcirq.md | 6 +++--- setup.py | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/release_wheels.yml b/.github/workflows/release_wheels.yml index 5463f5ce1..42f1c6190 100644 --- a/.github/workflows/release_wheels.yml +++ b/.github/workflows/release_wheels.yml @@ -15,18 +15,18 @@ jobs: - os: macos-10.15 name: mac cibw: - build: "cp37* cp38* cp39* cp310*" + build: "cp37* cp38* cp39* cp310* cp311*" - os: ubuntu-20.04 name: manylinux2014 cibw: arch: x86_64 - build: "cp37* cp38* cp39* cp310*" + build: "cp37* cp38* cp39* cp310* cp311*" manylinux_image: manylinux2014 - os: windows-2019 name: win_amd64 architecture: x64 cibw: - build: "cp37-win_amd64 cp38-win_amd64 cp39-win_amd64 cp310-win_amd64" + build: "cp37-win_amd64 cp38-win_amd64 cp39-win_amd64 cp310-win_amd64 cp311-win_amd64" env: CIBW_BUILD: "${{ matrix.cibw.build || '*' }}" CIBW_SKIP: "*musllinux*" diff --git a/.github/workflows/testing_wheels.yml b/.github/workflows/testing_wheels.yml index e63671f58..73d4a3f76 100644 --- a/.github/workflows/testing_wheels.yml +++ b/.github/workflows/testing_wheels.yml @@ -20,18 +20,18 @@ jobs: - os: macos-10.15 name: mac cibw: - build: "cp37* cp38* cp39* cp310*" + build: "cp37* cp38* cp39* cp310* cp311*" - os: ubuntu-20.04 name: manylinux2014 cibw: arch: x86_64 - build: "cp37* cp38* cp39* cp310*" + build: "cp37* cp38* cp39* cp310* cp311*" manylinux_image: manylinux2014 - os: windows-2019 name: win_amd64 architecture: x64 cibw: - build: "cp37-win_amd64 cp38-win_amd64 cp39-win_amd64 cp310-win_amd64" + build: "cp37-win_amd64 cp38-win_amd64 cp39-win_amd64 cp310-win_amd64 cp311-win_amd64" env: CIBW_BUILD: "${{ matrix.cibw.build || '*' }}" CIBW_SKIP: "*musllinux*" diff --git a/docs/install_qsimcirq.md b/docs/install_qsimcirq.md index 26f3535ed..b735cdf73 100644 --- a/docs/install_qsimcirq.md +++ b/docs/install_qsimcirq.md @@ -25,19 +25,19 @@ file. You can install them with `pip3 install -r dev-requirements.txt` or ## Linux installation -We provide `qsimcirq` Python wheels on 64-bit `x86` architectures with `Python 3.{7,8,9,10}`. +We provide `qsimcirq` Python wheels on 64-bit `x86` architectures with `Python 3.{7,8,9,10,11}`. Simply run `pip3 install qsimcirq`. ## MacOS installation -We provide `qsimcirq` Python wheels on `x86` architectures with `Python 3.{7,8,9,10}`. +We provide `qsimcirq` Python wheels on `x86` architectures with `Python 3.{7,8,9,10,11}`. Simply run `pip3 install qsimcirq`. ## Windows installation -We provide `qsimcirq` Python wheels on 64-bit `x86` and `amd64` architectures with `Python 3.{7,8,9,10}`. +We provide `qsimcirq` Python wheels on 64-bit `x86` and `amd64` architectures with `Python 3.{7,8,9,10,11}`. Simply run `pip3 install qsimcirq`. diff --git a/setup.py b/setup.py index 7fc34191f..c57a37a91 100644 --- a/setup.py +++ b/setup.py @@ -94,7 +94,7 @@ def build_extension(self, ext): url="https://github.com/quantumlib/qsim", author="Vamsi Krishna Devabathini", author_email="devabathini92@gmail.com", - python_requires=">=3.7.0,<3.11.0", + python_requires=">=3.7.0,<3.12.0", install_requires=requirements, extras_require={ "dev": dev_requirements,