Skip to content

Commit

Permalink
Update Python to allow any 3.12.x
Browse files Browse the repository at this point in the history
  • Loading branch information
woodthom2 authored Nov 26, 2024
1 parent b9c1562 commit 71c67d8
Showing 1 changed file with 16 additions and 15 deletions.
31 changes: 16 additions & 15 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ maintainers = [
authors = [
{ name = "Thomas Wood", email = "[email protected]" },
]
requires-python = ">=3.6,<=3.12.2"
requires-python = ">=3.6,<=3.13.0"
classifiers=[
# see https://pypi.org/classifiers/
"Development Status :: 5 - Production/Stable",
Expand All @@ -30,6 +30,7 @@ classifiers=[
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
Expand All @@ -40,20 +41,20 @@ classifiers=[
# core dependencies of harmony
# this set should be kept minimal!
dependencies = [
"pydantic==2.8.2; python_version <= '3.12'",
"pandas==2.2.2; python_version <= '3.12'",
"tika==2.6.0; python_version <= '3.12'",
"lxml==4.9.2; python_version <= '3.12'",
"langdetect==1.0.9; python_version <= '3.12'",
"XlsxWriter==3.0.9; python_version <= '3.12'",
"openpyxl==3.1.2; python_version <= '3.12'",
"wget==3.2; python_version <= '3.12'",
"sentence-transformers==2.2.2; python_version <= '3.12'",
"numpy==1.26.4; python_version <= '3.12'",
"sklearn-crfsuite==0.5.0; python_version <= '3.12'",
"scikit-learn; python_version <= '3.12'",
"scipy==1.14.1; python_version <= '3.12'",
"huggingface-hub==0.25.0; python_version <= '3.12'",
"pydantic==2.8.2; python_version <= '3.13'",
"pandas==2.2.2; python_version <= '3.13'",
"tika==2.6.0; python_version <= '3.13'",
"lxml==4.9.2; python_version <= '3.13'",
"langdetect==1.0.9; python_version <= '3.13'",
"XlsxWriter==3.0.9; python_version <= '3.13'",
"openpyxl==3.1.2; python_version <= '3.13'",
"wget==3.2; python_version <= '3.13'",
"sentence-transformers==2.2.2; python_version <= '3.13'",
"numpy==1.26.4; python_version <= '3.13'",
"sklearn-crfsuite==0.5.0; python_version <= '3.13'",
"scikit-learn; python_version <= '3.13'",
"scipy==1.14.1; python_version <= '3.13'",
"huggingface-hub==0.25.0; python_version <= '3.13'",
]

[project.optional-dependencies]
Expand Down

0 comments on commit 71c67d8

Please sign in to comment.