File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -25,10 +25,12 @@ license-files = ["LICENSE"]
2525
2626requires-python = " >=3.10"
2727# BenDFO is also required for testing but is not yet pip installable
28+ #
29+ # See Issues #227/#253 for version limits
2830dependencies = [
29- " numpy>=1.21.1 " , " scipy>=1.8.0" , # Code (See Issue #227 for version limits)
31+ " numpy>=1.22.0 " , " scipy>=1.8.0" , # General
3032 " ipdb" , # Minq
31- " jax" # Testing
33+ " jax>=0.4.17 " # Testing
3234]
3335
3436keywords = [" ibcdfo" ]
Original file line number Diff line number Diff line change @@ -46,15 +46,17 @@ commands =
4646description = Install all dependencies at oldest allowable version & test
4747basepython = py310
4848deps =
49- numpy ==1.21.1
49+ numpy ==1.22.0
5050 scipy ==1.8.0
51- jax ==0.4.6
52- jaxlib ==0.4.6
51+ jax ==0.4.17
52+ jaxlib ==0.4.17
5353usedevelop = true
5454commands =
5555 python -m pip list
56- python -c ' import numpy ; exit(numpy.__version__ != "1.21.1")'
57- python -c ' import scipy ; exit(scipy.__version__ != "1.8.0")'
56+ python -c ' import numpy ; exit( numpy.__version__ != "1.22.0")'
57+ python -c ' import scipy ; exit( scipy.__version__ != "1.8.0")'
58+ python -c ' import jax ; exit( jax.__version__ != "0.4.17")'
59+ python -c ' import jaxlib ; exit(jaxlib.__version__ != "0.4.17")'
5860 wget https://raw.githubusercontent.com/POptUS/BenDFO/main/data/dfo.dat -O dfo.dat
5961 python -m unittest ibcdfo -v
6062
You can’t perform that action at this time.
0 commit comments