Skip to content

Commit 8d065ca

Browse files
authored
Merge pull request #3452 from nipy/mnt/1.8.0.dev
MNT: 1.8.0.dev0
2 parents 1a476bd + e8bacb3 commit 8d065ca

File tree

4 files changed

+11
-15
lines changed

4 files changed

+11
-15
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ version: 2
102102
jobs:
103103
compare_base_dockerfiles:
104104
docker:
105-
- image: docker:17.10.0-ce-git
105+
- image: cimg/base:2022.04
106106
steps:
107107
- checkout:
108108
path: /home/circleci/nipype
@@ -112,10 +112,10 @@ jobs:
112112
working_directory: /home/circleci/nipype/docker
113113
command: |
114114
mkdir -p /tmp/docker
115-
ash ./generate_dockerfiles.sh -b
115+
bash ./generate_dockerfiles.sh -b
116116
117117
# Use the sha256 sum of the pruned Dockerfile as the cache key.
118-
ash prune_dockerfile.sh Dockerfile.base > /tmp/docker/Dockerfile.base-pruned
118+
bash prune_dockerfile.sh Dockerfile.base > /tmp/docker/Dockerfile.base-pruned
119119
- restore_cache:
120120
key: dockerfile-cache-v1-master-{{ checksum "/tmp/docker/Dockerfile.base-pruned" }}
121121
- run:

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ jobs:
2727
strategy:
2828
matrix:
2929
os: ['ubuntu-latest']
30-
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
30+
python-version: [3.7, 3.8, 3.9, "3.10"]
3131
check: ['test']
3232
pip-flags: ['']
3333
depends: ['REQUIREMENTS']
3434
deb-depends: [false]
3535
nipype-extras: ['doc,tests,profiler']
3636
include:
37-
- os: ubuntu-18.04
37+
- os: ubuntu-latest
3838
python-version: 3.8
3939
check: test
4040
pip-flags: ''

doc/interfaces.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Interfaces and Workflows
88
:Release: |version|
99
:Date: |today|
1010

11-
Previous versions: `1.7.0 <http://nipype.readthedocs.io/en/1.7.0/>`_ `1.6.1 <http://nipype.readthedocs.io/en/1.6.1/>`_
11+
Previous versions: `1.7.1 <http://nipype.readthedocs.io/en/1.7.1/>`_ `1.7.0 <http://nipype.readthedocs.io/en/1.7.0/>`_
1212

1313
Workflows
1414
---------

nipype/info.py

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
# nipype version information
77
# Remove -dev for release
8-
__version__ = "1.7.1"
8+
__version__ = "1.8.0.dev0"
99

1010

1111
def get_nipype_gitversion():
@@ -54,14 +54,13 @@ def get_nipype_gitversion():
5454
"License :: OSI Approved :: Apache Software License",
5555
"Operating System :: MacOS :: MacOS X",
5656
"Operating System :: POSIX :: Linux",
57-
"Programming Language :: Python :: 3.6",
5857
"Programming Language :: Python :: 3.7",
5958
"Programming Language :: Python :: 3.8",
6059
"Programming Language :: Python :: 3.9",
6160
"Programming Language :: Python :: 3.10",
6261
"Topic :: Scientific/Engineering",
6362
]
64-
PYTHON_REQUIRES = ">= 3.6"
63+
PYTHON_REQUIRES = ">= 3.7"
6564

6665
description = "Neuroimaging in Python: Pipelines and Interfaces"
6766

@@ -102,15 +101,12 @@ def get_nipype_gitversion():
102101
# versions
103102
NIBABEL_MIN_VERSION = "2.1.0"
104103
NETWORKX_MIN_VERSION = "2.0"
105-
# Numpy bug in python 3.7:
106-
# https://www.opensourceanswers.com/blog/you-shouldnt-use-python-37-for-data-science-right-now.html
107-
NUMPY_MIN_VERSION = "1.15.3"
104+
NUMPY_MIN_VERSION = "1.17"
108105
SCIPY_MIN_VERSION = "0.14"
109106
TRAITS_MIN_VERSION = "4.6"
110107
DATEUTIL_MIN_VERSION = "2.2"
111-
FUTURE_MIN_VERSION = "0.16.0"
112108
SIMPLEJSON_MIN_VERSION = "3.8.0"
113-
PROV_VERSION = "1.5.2"
109+
PROV_MIN_VERSION = "1.5.2"
114110
RDFLIB_MIN_VERSION = "5.0.0"
115111
CLICK_MIN_VERSION = "6.6.0"
116112
PYDOT_MIN_VERSION = "1.2.3"
@@ -141,7 +137,7 @@ def get_nipype_gitversion():
141137
"nibabel>=%s" % NIBABEL_MIN_VERSION,
142138
"numpy>=%s" % NUMPY_MIN_VERSION,
143139
"packaging",
144-
"prov>=%s" % PROV_VERSION,
140+
"prov>=%s" % PROV_MIN_VERSION,
145141
"pydot>=%s" % PYDOT_MIN_VERSION,
146142
"python-dateutil>=%s" % DATEUTIL_MIN_VERSION,
147143
"rdflib>=%s" % RDFLIB_MIN_VERSION,

0 commit comments

Comments
 (0)