Skip to content

Commit

Permalink
Update pyproject.toml for Python 3.12 support (#1038)
Browse files Browse the repository at this point in the history
* Update pyproject.toml for Python 3.12 support

add 3.12 classifier and update description to correctly reflect supported Python versions

* Update pyproject.toml

make the stated parsable versions range consistent with the README
  • Loading branch information
itamaro authored Oct 6, 2023
1 parent 83f0dae commit 88d0b36
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["setuptools", "wheel", "setuptools-rust"]

[project]
name = "libcst"
description = "A concrete syntax tree with AST-like properties for Python 3.5, 3.6, 3.7, 3.8, 3.9, and 3.10 programs."
description = "A concrete syntax tree with AST-like properties for Python 3.0 through 3.12 programs."
readme = "README.rst"
dynamic = ["version"]
license = { file = "LICENSE" }
Expand All @@ -14,6 +14,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.8"
dependencies = [
Expand Down

0 comments on commit 88d0b36

Please sign in to comment.