diff --git a/docs/install_qsimcirq.md b/docs/install_qsimcirq.md index 0a0f31820..26f3535ed 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.{6,7,8,9}`. +We provide `qsimcirq` Python wheels on 64-bit `x86` architectures with `Python 3.{7,8,9,10}`. Simply run `pip3 install qsimcirq`. ## MacOS installation -We provide `qsimcirq` Python wheels on `x86` architectures with `Python 3.{6,7,8,9}`. +We provide `qsimcirq` Python wheels on `x86` architectures with `Python 3.{7,8,9,10}`. Simply run `pip3 install qsimcirq`. ## Windows installation -We provide `qsimcirq` Python wheels on 64-bit `x86` and `amd64` architectures with `Python 3.{6,7,8,9}`. +We provide `qsimcirq` Python wheels on 64-bit `x86` and `amd64` architectures with `Python 3.{7,8,9,10}`. Simply run `pip3 install qsimcirq`. diff --git a/setup.py b/setup.py index 3b74d25d5..7fc34191f 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", + python_requires=">=3.7.0,<3.11.0", install_requires=requirements, extras_require={ "dev": dev_requirements,