From 3ee7151f1a1b6e8db57dbe3e32feb1aa559562b0 Mon Sep 17 00:00:00 2001 From: Scott Carda Date: Tue, 9 Jun 2026 10:37:11 -0700 Subject: [PATCH] raise python floor to 3.10 --- CONTRIBUTING.md | 4 ++-- azure-quantum/setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ce61e791e..ad08b7aba 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,7 +4,7 @@ For developers who want to contribute to this package or run tests locally, foll ## Prerequisites -- Python 3.9 or later +- Python 3.10 or later - Git - Powershell @@ -71,7 +71,7 @@ To provide a more useful version number, set the `PYTHON_VERSION` environment va The internal Azure Quantum Python SDK client (`azure/quantum/_client`) needs to be re-generated every time there is a change in the [Azure Quantum Service API definition](https://github.com/Azure/azure-rest-api-specs/tree/main/specification/quantum/data-plane) (aka Swagger). ### Prerequisites -- Python 3.8 (or later) +- Python 3.10 (or later) - NodeJS 18.3 LTS (or later) ### Setup your repo diff --git a/azure-quantum/setup.py b/azure-quantum/setup.py index a91083dc7..4eb61773b 100644 --- a/azure-quantum/setup.py +++ b/azure-quantum/setup.py @@ -106,7 +106,7 @@ def read_requirements(requirement_file: str) -> list[str]: "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], - python_requires=">=3.8", + python_requires=">=3.10", install_requires=requirements, extras_require=extras_require )