Skip to content

Commit

Permalink
Merge pull request #733 from markotoplak/fix-oldest
Browse files Browse the repository at this point in the history
[MNT] Fix -oldest and ARM tests
  • Loading branch information
markotoplak committed Jul 22, 2024
2 parents 65e6b83 + 1bbbd81 commit 5e4c9ac
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion orangecontrib/spectroscopy/tests/test_xas.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,5 @@ def test_file(self):
exafs = extra(data)
numpy.testing.assert_almost_equal(
[-3.46450033e-01, -3.45888957e-01, -3.44362296e-01, -3.41912861e-01,
-3.38582017e-01, -3.34409725e-01, -3.29434571e-01, -3.23693808e-01], exafs.X[0, :8])
-3.38582017e-01, -3.34409725e-01, -3.29434571e-01, -3.23693808e-01], exafs.X[0, :8],
decimal=4)
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def include_documentation(local_dir, install_dir):
install_requires=[
'setuptools>=36.3', # same as for Orange 3.28
'pip>=9.0', # same as for Orange 3.28
'numpy>=1.20.0,<2.0.0',
'numpy>=1.21.0,<2.0.0',
'Orange3>=3.34.0',
'orange-canvas-core>=0.1.28',
'orange-widget-base>=4.19.0',
Expand All @@ -141,7 +141,7 @@ def include_documentation(local_dir, install_dir):
'h5py',
'extranormal3 >=0.0.3',
'renishawWiRE>=0.1.8',
'pillow',
'pillow>=9.0.0',
'lmfit>=1.3.2',
'bottleneck',
'pebble',
Expand Down
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,13 @@ deps =
oldest: orange-canvas-core==0.1.28
oldest: orange-widget-base==4.19.0
oldest: scikit-learn~=1.0.1
oldest: numpy~=1.20.0
oldest: numpy~=1.21.0
oldest: pyqtgraph==0.12.2
oldest: scipy~=1.9.0
oldest: pandas~=1.3.0
oldest: spectral~=0.22.3
oldest: lmfit==1.3.1
oldest: lmfit==1.3.2
oldest: pillow==9.0.0
latest: https://github.com/biolab/orange3/archive/refs/heads/master.zip#egg=orange3
latest: https://github.com/biolab/orange-canvas-core/archive/refs/heads/master.zip#egg=orange-canvas-core
latest: https://github.com/biolab/orange-widget-base/archive/refs/heads/master.zip#egg=orange-widget-base
Expand Down

0 comments on commit 5e4c9ac

Please sign in to comment.