Skip to content

Commit 73b17d8

Browse files
authored
Update pyproject.toml for 3.14t (#1417)
- Update description to include 3.14 - Add 3.14 and free-threading trove classifiers - Update deps to switch back to pyyaml for 3.14
1 parent 421f7d3 commit 73b17d8

File tree

2 files changed

+106
-12
lines changed

2 files changed

+106
-12
lines changed

pyproject.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["setuptools", "setuptools-scm", "setuptools-rust", "wheel"]
33

44
[project]
55
name = "libcst"
6-
description = "A concrete syntax tree with AST-like properties for Python 3.0 through 3.13 programs."
6+
description = "A concrete syntax tree with AST-like properties for Python 3.0 through 3.14 programs."
77
readme = "README.rst"
88
dynamic = ["version"]
99
license = { file = "LICENSE" }
@@ -15,12 +15,15 @@ classifiers = [
1515
"Programming Language :: Python :: 3.11",
1616
"Programming Language :: Python :: 3.12",
1717
"Programming Language :: Python :: 3.13",
18+
"Programming Language :: Python :: 3.14",
19+
"Programming Language :: Python :: Free Threading",
1820
"Typing :: Typed",
1921
]
2022
requires-python = ">=3.9"
2123
dependencies = [
2224
"pyyaml>=5.2; python_version < '3.13'",
23-
"pyyaml-ft>=8.0.0; python_version >= '3.13'",
25+
"pyyaml-ft>=8.0.0; python_version == '3.13'",
26+
"pyyaml>=6.0.3; python_version >= '3.14'",
2427
"typing-extensions; python_version < '3.10'",
2528
]
2629

0 commit comments

Comments
 (0)