Skip to content

Commit 0c8585c

Browse files
committed
Improve version related metadata and relax numpy pin
1 parent 51da888 commit 0c8585c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

setup.cfg

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ classifiers =
2121
Programming Language :: Python :: 3.10
2222
Programming Language :: Python :: 3.11
2323
Programming Language :: Python :: 3.12
24+
Programming Language :: Python :: 3.13
2425
Topic :: Scientific/Engineering
2526
project_urls =
2627
Release notes = https://github.com/explosion/spaCy/releases
@@ -29,13 +30,13 @@ project_urls =
2930
[options]
3031
zip_safe = false
3132
include_package_data = true
32-
python_requires = >=3.9
33+
python_requires = >=3.9,<3.13
3334
# NOTE: This section is superseded by pyproject.toml and will be removed in
3435
# spaCy v4
3536
setup_requires =
3637
cython>=0.25,<3.0
37-
numpy>=2.0.0,<2.1.0; python_version < "3.9"
38-
numpy>=2.0.0,<2.1.0; python_version >= "3.9"
38+
numpy>=2.0.0,<3.0.0; python_version < "3.9"
39+
numpy>=2.0.0,<3.0.0; python_version >= "3.9"
3940
# We also need our Cython packages here to compile against
4041
cymem>=2.0.2,<2.1.0
4142
preshed>=3.0.2,<3.1.0

0 commit comments

Comments
 (0)