Skip to content

Commit 4d22f4a

Browse files
committed
change target python version to >=3.10
1 parent c5eb353 commit 4d22f4a

File tree

3 files changed

+26
-1
lines changed

3 files changed

+26
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ __pycache__/
1010
.Python
1111
build/
1212
develop-eggs/
13+
local_docs/
1314
dist/
1415
downloads/
1516
eggs/

.readthedocs.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# .readthedocs.yaml
2+
# Read the Docs configuration file
3+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4+
5+
# Required
6+
version: 2
7+
8+
formats:
9+
- pdf
10+
11+
# Set the version of Python and other tools you might need
12+
build:
13+
os: ubuntu-24.04
14+
tools:
15+
python: "3.11"
16+
17+
# Build documentation in the docs/ directory with Sphinx
18+
sphinx:
19+
configuration: docs/source/conf.py
20+
# We recommend specifying your dependencies to enable reproducible builds:
21+
# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
22+
python:
23+
install:
24+
- requirements: requirements/requirements-rtd.txt

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "tyxonq"
33
version = "0.1.1"
44
description = "Quantum computing framework with multi-backend support"
55
readme = "README.md"
6-
requires-python = ">=3.11"
6+
requires-python = ">=3.10"
77
authors = [
88
{ name = "Albert Lee", email = "code@quregenai.com" },
99
]

0 commit comments

Comments
 (0)