Skip to content

Commit 1d4ae2c

Browse files
committed
MAINT: Drop dependency_links, use PEP508 URLs
1 parent 0c26e09 commit 1d4ae2c

File tree

3 files changed

+7
-11
lines changed

3 files changed

+7
-11
lines changed

.circleci/config.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -307,20 +307,18 @@ jobs:
307307
circleci step halt
308308
fi
309309
- run:
310-
name: Check Python version and upgrade setup requirements
310+
name: Check Python version and upgrade pip
311311
command: |
312312
python --version
313-
python -m pip install -U pip setuptools numpy
313+
python -m pip install -U pip
314314
- run:
315315
name: Install graphviz
316316
command: |
317317
apt-get update
318318
apt-get install -y graphviz
319319
- run:
320320
name: Install fMRIPrep
321-
command: |
322-
python -m pip install -r requirements.txt
323-
python -m pip install ".[doc]"
321+
command: python -m pip install ".[doc]"
324322
- run:
325323
name: Build documentation
326324
command: make SPHINXOPTS="-W" -C docs html

fmriprep/__about__.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -89,25 +89,21 @@
8989
'nilearn!=0.5.0,!=0.5.1',
9090
'nipype>=1.1.6',
9191
'nitime',
92-
'niworkflows>=0.9',
92+
'niworkflows @ git+https://github.com/effigies/niworkflows.git@5e9daf0b08fcad2b17350a71ecaf71fa9ce4eff7',
9393
'numpy',
9494
'pandas',
9595
'psutil>=5.4',
9696
'pybids<0.8.0a0,>=0.7.1',
9797
'pyyaml',
9898
'scikit-image',
99-
'smriprep>=0.2.0a',
99+
'smriprep @ git+https://github.com/poldracklab/smriprep.git@f1cfc37bcdc346549dbf1d037cdade3a3b32d5de',
100100
'statsmodels',
101101
'tedana>=0.0.5',
102102
'templateflow<0.2.0a0,>=0.1.3',
103103
]
104104

105105

106106
LINKS_REQUIRES = [
107-
'git+https://github.com/poldracklab/niworkflows.git@'
108-
'076aed98962b10d107c83110c05e42466a89bbc4#egg=niworkflows',
109-
'git+https://github.com/poldracklab/smriprep.git@'
110-
'f1cfc37bcdc346549dbf1d037cdade3a3b32d5de#egg=smriprep',
111107
]
112108

113109
TESTS_REQUIRES = [

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[build-system]
2+
requires = ["pip>=18.1", "setuptools>=40.8", "wheel", "numpy"]

0 commit comments

Comments
 (0)