diff --git a/=2.12 b/=2.12 new file mode 100644 index 000000000..35bc8c193 --- /dev/null +++ b/=2.12 @@ -0,0 +1,7 @@ +Collecting pybind11 + Obtaining dependency information for pybind11 from https://files.pythonhosted.org/packages/13/2f/0f24b288e2ce56f51c920137620b4434a38fd80583dbbe24fc2a1656c388/pybind11-2.13.6-py3-none-any.whl.metadata + Downloading pybind11-2.13.6-py3-none-any.whl.metadata (9.5 kB) +Downloading pybind11-2.13.6-py3-none-any.whl (243 kB) + ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 243.3/243.3 kB 5.4 MB/s eta 0:00:00 +Installing collected packages: pybind11 +Successfully installed pybind11-2.13.6 diff --git a/pyproject.toml b/pyproject.toml index 849f27d1d..60280c9b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,3 +5,6 @@ exclude = ''' | venv )/ ''' + +[tool.ruff.lint] +select = ["NPY201"] \ No newline at end of file diff --git a/setup.py b/setup.py index 94b2dc563..b766c8a53 100644 --- a/setup.py +++ b/setup.py @@ -41,13 +41,13 @@ ] }, install_requires=[ - "matplotlib>=3.0.0", - "pandas>=0.23.4", + "matplotlib>=3.9.2", + "pandas>=2.2.2", "numpy>=2.0.0", "msgpack-numpy>=0.4.3.2", "spacy>=3.8.2", "scipy>=1.1.0", - "scikit-learn>=0.20.0", + "scikit-learn>=1.4.2", "nltk>=3.4", "dill>=0.2.9", "joblib>=0.13.2", @@ -58,6 +58,10 @@ "pyyaml>=5.4.1", "dnspython>=1.16.0", "thinc>=8.3.0,<8.4.0", + "h5py==3.12.1", + "numexpr>=2.10.1", + "ruff>=0.4.8", + "bottleneck", ], extras_require={ "craft": ["torch>=0.12"],