Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/release_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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*"
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,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*"
Expand Down
6 changes: 3 additions & 3 deletions docs/install_qsimcirq.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down