Skip to content

Commit

Permalink
Update pyproject.toml for Python 3.12 support
Browse files Browse the repository at this point in the history
add 3.12 classifier and update description to correctly reflect supported Python versions
  • Loading branch information
itamaro authored Oct 6, 2023
1 parent 8d4229d commit 814b8e3
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.8, 3.9, 3.10, 3.11, and 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 814b8e3

Please sign in to comment.