Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 0 additions & 30 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,36 +31,6 @@ env:
EXTRA_PIP_FLAGS="--pre $EXTRA_PIP_FLAGS --find-links $PRE_WHEELS"
CI_SKIP_TEST=1

# Python 3.4 is only available on Trusty, so we need to duplicate the
# env matrix specifically for it.
matrix:
include:
- python: 3.4
dist: trusty
env:
- INSTALL_DEB_DEPENDECIES=true
NIPYPE_EXTRAS="doc,tests,nipy,profiler"
CI_SKIP_TEST=1
- python: 3.4
dist: trusty
env:
- INSTALL_DEB_DEPENDECIES=false
NIPYPE_EXTRAS="doc,tests,profiler"
CI_SKIP_TEST=1
- python: 3.4
dist: trusty
env:
- INSTALL_DEB_DEPENDECIES=true
NIPYPE_EXTRAS="doc,tests,nipy,profiler,duecredit,ssh"
CI_SKIP_TEST=1
- python: 3.4
dist: trusty
env:
- INSTALL_DEB_DEPENDECIES=true
NIPYPE_EXTRAS="doc,tests,nipy,profiler"
EXTRA_PIP_FLAGS="--pre $EXTRA_PIP_FLAGS --find-links $PRE_WHEELS"
CI_SKIP_TEST=1

addons:
apt:
packages:
Expand Down
4 changes: 1 addition & 3 deletions nipype/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,12 @@ def get_nipype_gitversion():
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering'
]
PYTHON_REQUIRES = ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.*"
PYTHON_REQUIRES = ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.*, != 3.4.*"

description = 'Neuroimaging in Python: Pipelines and Interfaces'

Expand Down Expand Up @@ -145,7 +144,6 @@ def get_nipype_gitversion():
'funcsigs',
'future>=%s' % FUTURE_MIN_VERSION,
'futures; python_version == "2.7"',
'lxml<4.4.0; python_version == "3.4"',
'networkx>=%s ; python_version >= "3.0"' % NETWORKX_MIN_VERSION,
'networkx>=%s,<=%s ; python_version < "3.0"' % (NETWORKX_MIN_VERSION, NETWORKX_MAX_VERSION_27),
'nibabel>=%s' % NIBABEL_MIN_VERSION,
Expand Down