Skip to content

Commit d4aa862

Browse files
authored
Add Python 3.14 to the wheels build list (#1018)
In answer to #1017, this adds Python 3.14 to the list of wheels built for qsim. This does not affect what is on PyPI; updating PyPI needs to be done separately.
1 parent 3dee003 commit d4aa862

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ classifiers = [
6565
"Programming Language :: Python :: 3.11",
6666
"Programming Language :: Python :: 3.12",
6767
"Programming Language :: Python :: 3.13",
68+
"Programming Language :: Python :: 3.14",
6869
"Topic :: Scientific/Engineering :: Quantum Computing",
6970
"Topic :: Software Development :: Libraries :: Python Modules",
7071
"Typing :: Typed",
@@ -123,7 +124,7 @@ version = {attr = "qsimcirq._version.__version__"}
123124
dependencies = {file = ["requirements.txt"] }
124125

125126
[tool.cibuildwheel]
126-
build = "cp310-* cp311-* cp312-* cp313-*"
127+
build = "cp310-* cp311-* cp312-* cp313-* cp314-*"
127128
dependency-versions = "latest"
128129
enable = ["cpython-prerelease"]
129130
environment.PIP_PREFER_BINARY = "1"
@@ -153,7 +154,7 @@ manylinux-i686-image = "manylinux2014"
153154
skip = "*musllinux*"
154155

155156
[tool.black]
156-
target-version = ['py310', 'py311', 'py312', 'py313']
157+
target-version = ['py310', 'py311', 'py312', 'py313', 'py314']
157158
extend-exclude = 'third_party'
158159

159160
[tool.isort]

0 commit comments

Comments
 (0)