Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions ibcdfo_pypkg/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,12 @@ license-files = ["LICENSE"]

requires-python = ">=3.10"
# BenDFO is also required for testing but is not yet pip installable
#
# See Issues #227/#253 for version limits
dependencies = [
"numpy>=1.21.1", "scipy>=1.8.0", # Code (See Issue #227 for version limits)
"numpy>=1.22.0", "scipy>=1.8.0", # General
"ipdb", # Minq
"jax" # Testing
"jax>=0.4.17" # Testing
]

keywords = ["ibcdfo"]
Expand Down
12 changes: 7 additions & 5 deletions ibcdfo_pypkg/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,17 @@ commands =
description = Install all dependencies at oldest allowable version & test
basepython = py310
deps =
numpy==1.21.1
numpy==1.22.0
scipy==1.8.0
jax==0.4.6
jaxlib==0.4.6
jax==0.4.17
jaxlib==0.4.17
usedevelop = true
commands =
python -m pip list
python -c 'import numpy ; exit(numpy.__version__ != "1.21.1")'
python -c 'import scipy ; exit(scipy.__version__ != "1.8.0")'
python -c 'import numpy ; exit( numpy.__version__ != "1.22.0")'
python -c 'import scipy ; exit( scipy.__version__ != "1.8.0")'
python -c 'import jax ; exit( jax.__version__ != "0.4.17")'
python -c 'import jaxlib ; exit(jaxlib.__version__ != "0.4.17")'
wget https://raw.githubusercontent.com/POptUS/BenDFO/main/data/dfo.dat -O dfo.dat
python -m unittest ibcdfo -v

Expand Down