Skip to content

Commit 07f2f98

Browse files
authored
Merge branch 'master' into patch-1
2 parents d043f40 + 229a604 commit 07f2f98

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/release_wheels.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@ jobs:
1515
- os: macos-10.15
1616
name: mac
1717
cibw:
18-
build: "cp37* cp38* cp39* cp310*"
18+
build: "cp37* cp38* cp39* cp310* cp311*"
1919
- os: ubuntu-20.04
2020
name: manylinux2014
2121
cibw:
2222
arch: x86_64
23-
build: "cp37* cp38* cp39* cp310*"
23+
build: "cp37* cp38* cp39* cp310* cp311*"
2424
manylinux_image: manylinux2014
2525
- os: windows-2019
2626
name: win_amd64
2727
architecture: x64
2828
cibw:
29-
build: "cp37-win_amd64 cp38-win_amd64 cp39-win_amd64 cp310-win_amd64"
29+
build: "cp37-win_amd64 cp38-win_amd64 cp39-win_amd64 cp310-win_amd64 cp311-win_amd64"
3030
env:
3131
CIBW_BUILD: "${{ matrix.cibw.build || '*' }}"
3232
CIBW_SKIP: "*musllinux*"

.github/workflows/testing_wheels.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,18 @@ jobs:
2020
- os: macos-10.15
2121
name: mac
2222
cibw:
23-
build: "cp37* cp38* cp39* cp310*"
23+
build: "cp37* cp38* cp39* cp310* cp311*"
2424
- os: ubuntu-20.04
2525
name: manylinux2014
2626
cibw:
2727
arch: x86_64
28-
build: "cp37* cp38* cp39* cp310*"
28+
build: "cp37* cp38* cp39* cp310* cp311*"
2929
manylinux_image: manylinux2014
3030
- os: windows-2019
3131
name: win_amd64
3232
architecture: x64
3333
cibw:
34-
build: "cp37-win_amd64 cp38-win_amd64 cp39-win_amd64 cp310-win_amd64"
34+
build: "cp37-win_amd64 cp38-win_amd64 cp39-win_amd64 cp310-win_amd64 cp311-win_amd64"
3535
env:
3636
CIBW_BUILD: "${{ matrix.cibw.build || '*' }}"
3737
CIBW_SKIP: "*musllinux*"

docs/install_qsimcirq.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,19 @@ file. You can install them with `pip3 install -r dev-requirements.txt` or
2525

2626
## Linux installation
2727

28-
We provide `qsimcirq` Python wheels on 64-bit `x86` architectures with `Python 3.{7,8,9,10}`.
28+
We provide `qsimcirq` Python wheels on 64-bit `x86` architectures with `Python 3.{7,8,9,10,11}`.
2929

3030
Simply run `pip3 install qsimcirq`.
3131

3232
## MacOS installation
3333

34-
We provide `qsimcirq` Python wheels on `x86` architectures with `Python 3.{7,8,9,10}`.
34+
We provide `qsimcirq` Python wheels on `x86` architectures with `Python 3.{7,8,9,10,11}`.
3535

3636
Simply run `pip3 install qsimcirq`.
3737

3838
## Windows installation
3939

40-
We provide `qsimcirq` Python wheels on 64-bit `x86` and `amd64` architectures with `Python 3.{7,8,9,10}`.
40+
We provide `qsimcirq` Python wheels on 64-bit `x86` and `amd64` architectures with `Python 3.{7,8,9,10,11}`.
4141

4242
Simply run `pip3 install qsimcirq`.
4343

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def build_extension(self, ext):
9494
url="https://github.com/quantumlib/qsim",
9595
author="Vamsi Krishna Devabathini",
9696
author_email="devabathini92@gmail.com",
97-
python_requires=">=3.7.0,<3.11.0",
97+
python_requires=">=3.7.0,<3.12.0",
9898
install_requires=requirements,
9999
extras_require={
100100
"dev": dev_requirements,

0 commit comments

Comments
 (0)