Skip to content

Commit

Permalink
build(python3.13): test and declare support for python 3.13 (#319)
Browse files Browse the repository at this point in the history
  • Loading branch information
ultrabug authored Jan 24, 2025
1 parent 09c9e1b commit f382516
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
max-parallel: 5
matrix:
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
os: [ubuntu-latest, windows-latest, macos-latest]
# Just to slim down the test matrix:
exclude:
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: '3.13'
- name: Install Python dependencies
run: |
python -m pip install --upgrade hatch
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
Expand Down Expand Up @@ -72,7 +73,7 @@ test = [
]

[[tool.hatch.envs.test.matrix]]
python = ["3.8", "3.9", "3.10", "3.11", "3.12"]
python = ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
type = ["default"]

[tool.hatch.envs.doc]
Expand Down Expand Up @@ -106,7 +107,7 @@ format = [

[tool.black]
line-length = 100
target-version = ["py311"]
target-version = ["py313"]
skip-string-normalization = true

[tool.isort]
Expand Down

0 comments on commit f382516

Please sign in to comment.