Skip to content

Commit d73b5a6

Browse files
committed
MAINT: Revise tests and Docker image dependencies
1 parent c4d86eb commit d73b5a6

File tree

5 files changed

+103
-81
lines changed

5 files changed

+103
-81
lines changed

.dockerignore

+86
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
joss/
2+
.github/
3+
.circle/
4+
5+
# Byte-compiled / optimized / DLL files
6+
__pycache__/
7+
*.py[cod]
8+
*$py.class
9+
.pytest_cache/
10+
11+
# C extensions
12+
*.so
13+
*.c
14+
15+
# Distribution / packaging
16+
.Python
17+
env/
18+
# build/ # commented due to some strangeness with Docker/circle setup
19+
develop-eggs/
20+
dist/
21+
build/lib*
22+
build/temp*
23+
downloads/
24+
eggs/
25+
.eggs/
26+
lib/
27+
lib64/
28+
parts/
29+
sdist/
30+
var/
31+
*.egg-info/
32+
.installed.cfg
33+
*.egg
34+
35+
# PyInstaller
36+
# Usually these files are written by a python script from a template
37+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
38+
*.manifest
39+
*.spec
40+
41+
# Installer logs
42+
pip-log.txt
43+
pip-delete-this-directory.txt
44+
45+
# Unit test / coverage reports
46+
htmlcov/
47+
.tox/
48+
.coverage
49+
.coverage.*
50+
.cache
51+
nosetests.xml
52+
coverage.xml
53+
*,cover
54+
.hypothesis/
55+
.pep8speaks.yml
56+
57+
# Translations
58+
*.mo
59+
*.pot
60+
61+
# Django stuff:
62+
*.log
63+
64+
# Sphinx documentation
65+
docs/_build/
66+
build/
67+
68+
# PyBuilder
69+
target/
70+
71+
#Ipython Notebook
72+
.ipynb_checkpoints
73+
74+
# pycharm project settings
75+
.idea
76+
77+
# Spyder project settings
78+
.spyderproject
79+
.spyproject
80+
81+
auth/
82+
secrets.py
83+
local_settings.py
84+
85+
*.swp
86+
.vscode/

.travis.yml

-69
This file was deleted.

Dockerfile

+14-9
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,11 @@ ENV FSLDIR="/usr/share/fsl/5.0" \
8686
AFNI_PLUGINPATH="/usr/lib/afni/plugins"
8787
ENV PATH="/usr/lib/fsl/5.0:/usr/lib/afni/bin:$PATH"
8888

89-
# Installing ANTs 2.2.0 (NeuroDocker build)
89+
# Installing ANTs 2.3.3 (NeuroDocker build)
90+
# Note: the URL says 2.3.4 but it is actually 2.3.3
9091
ENV ANTSPATH=/usr/lib/ants
9192
RUN mkdir -p $ANTSPATH && \
92-
curl -sSL "https://dl.dropbox.com/s/2f4sui1z6lcgyek/ANTs-Linux-centos5_x86_64-v2.2.0-0740f91.tar.gz" \
93+
curl -sSL "https://dl.dropbox.com/s/gwf51ykkk5bifyj/ants-Linux-centos6_x86_64-v2.3.4.tar.gz" \
9394
| tar -xzC $ANTSPATH --strip-components 1
9495
ENV PATH=$ANTSPATH:$PATH
9596

@@ -106,14 +107,18 @@ ENV PATH="/usr/local/miniconda/bin:$PATH" \
106107
PYTHONNOUSERSITE=1
107108

108109
# Installing precomputed python packages
109-
RUN conda install -y python=3.7.1 \
110-
pip=19.1 \
111-
mkl=2018.0.3 \
110+
RUN conda install -y -c anaconda -c conda-forge \
111+
python=3.7 \
112+
libxml2=2.9 \
113+
libxslt=1.1 \
114+
mkl \
112115
mkl-service \
113-
numpy=1.15.4 \
114-
scipy=1.1.0 \
115-
libxml2=2.9.8 \
116-
libxslt=1.1.32 \
116+
numpy=1.20 \
117+
pip=21 \
118+
scipy=1.6 \
119+
setuptools \
120+
setuptools_scm \
121+
toml \
117122
zlib; sync && \
118123
chmod -R a+rX /usr/local/miniconda; sync && \
119124
chmod +x /usr/local/miniconda/bin/*; sync && \

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools ~= 42.0", "wheel", "setuptools_scm[toml] >= 3.4"]
2+
requires = ["setuptools >= 42.0", "wheel", "setuptools_scm[toml] >= 3.4", "setuptools_scm_git_archive"]
33

44
[tool.setuptools_scm]
55
write_to = "nitransforms/_version.py"

setup.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ classifiers =
66
Intended Audience :: Science/Research
77
Topic :: Scientific/Engineering :: Image Recognition
88
License :: OSI Approved :: BSD License
9-
Programming Language :: Python :: 3.6
109
Programming Language :: Python :: 3.7
1110
Programming Language :: Python :: 3.8
11+
Programming Language :: Python :: 3.9
1212
description = NiTransforms -- Neuroimaging spatial transforms in Python.
1313
license = MIT License
1414
long_description = file:README.md
@@ -20,7 +20,7 @@ project_urls =
2020
url = https://github.com/poldracklab/nitransforms
2121

2222
[options]
23-
python_requires = >= 3.6
23+
python_requires = >= 3.7
2424
install_requires =
2525
numpy
2626
scipy

0 commit comments

Comments
 (0)