From af9428d8e127652188163e5044bdb8b7e3046cf2 Mon Sep 17 00:00:00 2001 From: Orion Martin <40585662+95-martin-orion@users.noreply.github.com> Date: Wed, 8 Mar 2023 14:19:55 -0800 Subject: [PATCH 1/2] Restrict python version to 3.10.x and below --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, From f7cd4ebbb52c7d27e3029130d026388df3a3fac6 Mon Sep 17 00:00:00 2001 From: Orion Martin <40585662+95-martin-orion@users.noreply.github.com> Date: Wed, 8 Mar 2023 14:21:26 -0800 Subject: [PATCH 2/2] Update reported supported python versions --- docs/install_qsimcirq.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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`.