Skip to content

Commit

Permalink
chore: Add Python 3.14 trove classifier (#1146)
Browse files Browse the repository at this point in the history
* chore: Add Python 3.14 trove classifier

* chore: Add Python 3.14 trove classifier
  • Loading branch information
edgarrmondragon authored Jun 12, 2024
1 parent 92a9294 commit bedd5d3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
9 changes: 8 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,14 @@

package = "citric"

python_versions = ["3.13", "3.12", "3.11", "3.10", "3.9", "3.8"]
python_versions = [
"3.13",
"3.12",
"3.11",
"3.10",
"3.9",
"3.8",
]
pypy_versions = ["pypy3.9", "pypy3.10"]
all_python_versions = python_versions + pypy_versions

Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
Expand Down Expand Up @@ -262,7 +263,7 @@ DEP004 = [
]

[tool.pyproject-fmt]
max_supported_python = "3.13"
max_supported_python = "3.14"

[tool.pytest.ini_options]
addopts = [
Expand Down

0 comments on commit bedd5d3

Please sign in to comment.