Skip to content

Commit

Permalink
include python 3.13 in build (#1203)
Browse files Browse the repository at this point in the history
  • Loading branch information
khameeteman authored Oct 10, 2024
1 parent b49e705 commit a2b3456
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
with:
Expand Down
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", "setuptools-scm", "setuptools-rust", "wheel"]

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

0 comments on commit a2b3456

Please sign in to comment.