From 7870c3f78b07b4288896e34b98a3947d6f556208 Mon Sep 17 00:00:00 2001 From: severinsimmler Date: Thu, 12 Dec 2024 09:39:54 +0100 Subject: [PATCH] feat: python 3.13 --- pyproject.toml | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 89d935d..f1aa586 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,13 +1,13 @@ [tool.poetry] name = "jieba_pyfast" -version = "3.12.0" +version = "3.13.0" description = "Tokenize Chinese characters" license = "MIT" authors = ["snapADDY GmbH "] readme = "README.md" [tool.poetry.dependencies] -python = "3.12.*" +python = "3.13.*" [tool.poetry.group.dev.dependencies] isort = "^5.9.2" @@ -21,18 +21,8 @@ cibuildwheel = "^2.9.0" generate-setup-file = true script = "build.py" -[tool.isort] -line_length = 88 -use_parentheses = true -include_trailing_comma = true -multi_line_output = 3 - -[tool.pycln] -all = true -exclude = "__init__.py" - [tool.cibuildwheel] -build = "cp312-*" +build = "cp313-*" test-requires = "pytest" test-command = "pytest {project}/tests"