Skip to content

Commit 938cdf4

Browse files
committed
CI: Do not install future, remove futures check
1 parent 055a59f commit 938cdf4

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.circleci/config.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -317,16 +317,14 @@ jobs:
317317
name: Check pypi preconditions
318318
command: |
319319
pyenv local 3.5.2
320-
pip install --upgrade twine future wheel readme_renderer setuptools
320+
pip install --upgrade twine wheel readme_renderer setuptools
321321
python setup.py check -r -s
322322
python setup.py sdist bdist_wheel
323323
- run:
324324
name: Validate Python 3 installation
325325
command: |
326326
pyenv local 3.5.2
327327
pip install dist/nipype-*-py3-none-any.whl
328-
# Futures should not install in Python 3
329-
test $(pip show futures 2>/dev/null | wc -l) = "0"
330328
- store_artifacts:
331329
path: /home/circleci/nipype/dist
332330

@@ -340,7 +338,7 @@ jobs:
340338
name: Deploy to PyPI
341339
command: |
342340
pyenv local 3.5.2
343-
pip install --upgrade twine future wheel readme_renderer setuptools
341+
pip install --upgrade twine wheel readme_renderer setuptools
344342
python setup.py check -r -s
345343
python setup.py sdist bdist_wheel
346344
twine upload dist/*

0 commit comments

Comments
 (0)