-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7a55521
commit d9e0d36
Showing
1 changed file
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[tool.poetry] | ||
name = "chaine" | ||
version = "3.11.0" | ||
version = "3.12.0" | ||
description = "Linear-chain conditional random fields for natural language processing" | ||
authors = ["Severin Simmler <[email protected]>"] | ||
readme = "README.md" | ||
|
||
[tool.poetry.dependencies] | ||
python = "3.11.*" | ||
python = "^3.10" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
black = "^23.1.0" | ||
|
@@ -34,9 +34,10 @@ all = true | |
exclude = "__init__.py" | ||
|
||
[tool.cibuildwheel] | ||
build = "cp311-*" | ||
build = "cp310-* cp311-* cp312-*" | ||
before-build = "rm -rf build" | ||
test-requires = "pytest" | ||
test-command = "pytest {project}/tests" | ||
test-command = "cd {project}/tests && pytest" | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0.0", "setuptools"] | ||
|