Skip to content

Commit

Permalink
Support for Python 3.12 (#11)
Browse files Browse the repository at this point in the history
* Support for Python 3.12

* Add py312 to CI
  • Loading branch information
yasufumy authored Oct 15, 2023
1 parent 773f7a2 commit 69ec990
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11"]
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "A Tensor Creation and Label Reconstruction for Sequence Labeling"
authors = [
{name = "Yasufumi Taniguchi", email = "[email protected]"},
]
requires-python = ">=3.8,<3.12"
requires-python = ">=3.8,<3.13"
dynamic = ["version"]
readme = {"file" = "README.md", "content-type" = "text/markdown"}
license = {text = "MIT"}
Expand All @@ -13,7 +13,8 @@ classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]

[project.optional-dependencies]
Expand Down

0 comments on commit 69ec990

Please sign in to comment.