Skip to content

Commit 6055968

Browse files
authored
build: bump some older pydata deps (#173)
* build: bump numpy to v2, w/ min compat sklearn * build: bump sklearn more, v1.4 => v1.8
1 parent 611cb20 commit 6055968

File tree

2 files changed

+127
-45
lines changed

2 files changed

+127
-45
lines changed

pyproject.toml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,18 @@ dependencies = [
3131
"ftfy~=6.3.0",
3232
"gunicorn~=23.0",
3333
"jinja2~=3.1.0",
34-
"joblib~=1.4.0",
34+
"joblib~=1.5.0",
3535
"lingua-language-detector~=2.1.0",
3636
"markupsafe~=3.0.0",
3737
"marshmallow~=4.1.0",
38-
"numpy~=1.26.0",
38+
"numpy~=2.4.0",
3939
"psycopg[binary,pool]~=3.3.0",
4040
"pymupdf~=1.26.0",
4141
"python-dateutil~=2.9.0",
4242
"python-dotenv~=1.2.0",
4343
"rispy~=0.10.0",
4444
"river~=0.23.0",
45-
"scikit-learn~=1.3.0",
45+
"scikit-learn~=1.8.0",
4646
"sqlalchemy~=2.0.0",
4747
"spacy~=3.8.0",
4848
"splink~=4.0.8",
@@ -107,13 +107,14 @@ line-ending = "auto"
107107

108108
[tool.ruff.lint]
109109
select = [
110-
"E4", # pycodestyle
110+
"E4", # pycodestyle
111111
"E7",
112112
"E9",
113-
"F", # pyflakes
114-
"I", # isort
115-
"PLE", # pylint
113+
"F", # pyflakes
114+
"I", # isort
115+
"PLE", # pylint
116116
"PLW",
117+
"NPY201", # numpy v2.0
117118
]
118119
# ignore line-length violations, None comparisons, unused imports, overwritten assignment
119120
ignore = ["E501", "E711", "F401", "PLW2901"]

0 commit comments

Comments
 (0)