Skip to content

Commit

Permalink
chore: Update minimum dependencies, test them
Browse files Browse the repository at this point in the history
  • Loading branch information
effigies committed Nov 18, 2024
1 parent 1d324ad commit 8abddf9
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 15 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@ jobs:
os: ["ubuntu-latest"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
dependencies: [none, full, pre]
# include:
# - os: ubuntu-latest
# python-version: "3.9"
# dependencies: min
include:
- os: ubuntu-latest
python-version: "3.9"
dependencies: min
exclude:
# Skip some intermediate versions for full tests
- python-version: "3.10"
Expand Down
21 changes: 10 additions & 11 deletions nipype/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ def get_nipype_gitversion():
# versions
NIBABEL_MIN_VERSION = "2.1.0"
NETWORKX_MIN_VERSION = "2.0"
NUMPY_MIN_VERSION = "1.17"
SCIPY_MIN_VERSION = "0.14"
TRAITS_MIN_VERSION = "4.6"
NUMPY_MIN_VERSION = "1.21"
SCIPY_MIN_VERSION = "1.8"
TRAITS_MIN_VERSION = "6.2"
DATEUTIL_MIN_VERSION = "2.2"
SIMPLEJSON_MIN_VERSION = "3.8.0"
PROV_MIN_VERSION = "1.5.2"
Expand Down Expand Up @@ -143,23 +143,22 @@ def get_nipype_gitversion():
"rdflib>=%s" % RDFLIB_MIN_VERSION,
"scipy>=%s" % SCIPY_MIN_VERSION,
"simplejson>=%s" % SIMPLEJSON_MIN_VERSION,
"traits>=%s,!=5.0" % TRAITS_MIN_VERSION,
"traits>=%s" % TRAITS_MIN_VERSION,
"filelock>=3.0.0",
"etelemetry>=0.2.0",
"etelemetry>=0.3.1",
"looseversion!=1.2",
"puremagic",
]

TESTS_REQUIRES = [
"codecov",
"coverage",
"coverage >= 5.2.1",
"pytest >= 6",
"pytest-cov",
"pytest-cov >=2.11",
"pytest-env",
"pytest-timeout",
"pytest-timeout >=1.4",
"pytest-doctestplus",
"pytest-xdist",
"sphinx",
"pytest-xdist >= 2.5",
"sphinx >=7",
]

EXTRA_REQUIRES = {
Expand Down

0 comments on commit 8abddf9

Please sign in to comment.