File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,8 @@ fix-ruff:
30
30
31
31
.PHONY : pip-extra-reqs
32
32
pip-extra-reqs :
33
- pip-extra-reqs --skip-incompatible --requirements-file=<( pdm export --pyproject) src/
33
+ # Ignore scipy as it is defined to constrain a version.
34
+ pip-extra-reqs --ignore-requirement=scipy --skip-incompatible --requirements-file=<( pdm export --pyproject) src/
34
35
35
36
.PHONY : pip-missing-reqs
36
37
pip-missing-reqs :
Original file line number Diff line number Diff line change @@ -313,6 +313,10 @@ dependencies = [
313
313
" pydantic-settings" ,
314
314
" requests" ,
315
315
" requests-mock" ,
316
+ # We pin to an old version of scipy as brisque does not support newer versions.
317
+ # `brisque` appears to be unmaintained, so we may need to switch to an
318
+ # alternative, such as `piq`, which currently does not support Python 3.12.
319
+ " scipy<1.12.0" ,
316
320
' tzdata; sys_platform == "win32"' ,
317
321
" vws-auth-tools" ,
318
322
]
You can’t perform that action at this time.
0 commit comments