Skip to content

Commit 8abddf9

Browse files
committed
chore: Update minimum dependencies, test them
1 parent 1d324ad commit 8abddf9

File tree

2 files changed

+14
-15
lines changed

2 files changed

+14
-15
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,10 @@ jobs:
8080
os: ["ubuntu-latest"]
8181
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
8282
dependencies: [none, full, pre]
83-
# include:
84-
# - os: ubuntu-latest
85-
# python-version: "3.9"
86-
# dependencies: min
83+
include:
84+
- os: ubuntu-latest
85+
python-version: "3.9"
86+
dependencies: min
8787
exclude:
8888
# Skip some intermediate versions for full tests
8989
- python-version: "3.10"

nipype/info.py

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,9 @@ def get_nipype_gitversion():
101101
# versions
102102
NIBABEL_MIN_VERSION = "2.1.0"
103103
NETWORKX_MIN_VERSION = "2.0"
104-
NUMPY_MIN_VERSION = "1.17"
105-
SCIPY_MIN_VERSION = "0.14"
106-
TRAITS_MIN_VERSION = "4.6"
104+
NUMPY_MIN_VERSION = "1.21"
105+
SCIPY_MIN_VERSION = "1.8"
106+
TRAITS_MIN_VERSION = "6.2"
107107
DATEUTIL_MIN_VERSION = "2.2"
108108
SIMPLEJSON_MIN_VERSION = "3.8.0"
109109
PROV_MIN_VERSION = "1.5.2"
@@ -143,23 +143,22 @@ def get_nipype_gitversion():
143143
"rdflib>=%s" % RDFLIB_MIN_VERSION,
144144
"scipy>=%s" % SCIPY_MIN_VERSION,
145145
"simplejson>=%s" % SIMPLEJSON_MIN_VERSION,
146-
"traits>=%s,!=5.0" % TRAITS_MIN_VERSION,
146+
"traits>=%s" % TRAITS_MIN_VERSION,
147147
"filelock>=3.0.0",
148-
"etelemetry>=0.2.0",
148+
"etelemetry>=0.3.1",
149149
"looseversion!=1.2",
150150
"puremagic",
151151
]
152152

153153
TESTS_REQUIRES = [
154-
"codecov",
155-
"coverage",
154+
"coverage >= 5.2.1",
156155
"pytest >= 6",
157-
"pytest-cov",
156+
"pytest-cov >=2.11",
158157
"pytest-env",
159-
"pytest-timeout",
158+
"pytest-timeout >=1.4",
160159
"pytest-doctestplus",
161-
"pytest-xdist",
162-
"sphinx",
160+
"pytest-xdist >= 2.5",
161+
"sphinx >=7",
163162
]
164163

165164
EXTRA_REQUIRES = {

0 commit comments

Comments
 (0)