Skip to content

Commit 5ca99d4

Browse files
authored
Merge pull request #254 from POptUS/253UpdateOldest
Update oldest supported versions
2 parents 9ede9de + 38aafa0 commit 5ca99d4

2 files changed

Lines changed: 11 additions & 7 deletions

File tree

ibcdfo_pypkg/pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,12 @@ license-files = ["LICENSE"]
2525

2626
requires-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
2830
dependencies = [
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

3436
keywords = ["ibcdfo"]

ibcdfo_pypkg/tox.ini

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,17 @@ commands =
4646
description = Install all dependencies at oldest allowable version & test
4747
basepython = py310
4848
deps =
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
5353
usedevelop = true
5454
commands =
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

0 commit comments

Comments
 (0)