Skip to content

Commit

Permalink
Added support for Python 3.13.
Browse files Browse the repository at this point in the history
Closes #31.
  • Loading branch information
kpfleming committed May 9, 2024
1 parent 1cea76f commit eed77dd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions changelog.d/31.adding.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Added support for Python 3.13.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ python = [
"3.10",
"3.11",
"3.12",
"3.13",
]

[tool.hatch.envs.ci.scripts]
Expand Down
2 changes: 1 addition & 1 deletion workflow-support/make_ci_image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ proj_deps=(libsqlite3-0)
proj_build_deps=(build-essential libc6-dev pkg-config)

hatchenvs=(lint ci)
cimatrix=(3.8 3.9 3.10 3.11 3.12)
cimatrix=(3.8 3.9 3.10 3.11 3.12 3.13)

c=$(buildah from "${base_image}")

Expand Down
2 changes: 1 addition & 1 deletion workflow-support/versions.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
versions={"python": ["3.8", "3.9", "3.10", "3.11", "3.12"]}
versions={"python": ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]}

0 comments on commit eed77dd

Please sign in to comment.