Skip to content

Commit

Permalink
Merge pull request #269 from mgxd/maint/loosen-deps
Browse files Browse the repository at this point in the history
MAINT: Loosen installation restrictions
  • Loading branch information
effigies authored May 13, 2022
2 parents 56a02bf + 913aec2 commit d245dfd
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,15 +86,16 @@ jobs:
path: |
/usr/share/miniconda/pkgs
/home/runner/.cache/pip
key: python-${{ matrix.python-version }}-v2
key: python-${{ matrix.python-version }}-v3
restore-keys: |
python-${{ matrix.python-version }}-
python-${{ matrix.python-version }}-v3
- name: Install DataLad
run: |
$CONDA/bin/conda install -c conda-forge git-annex datalad pip
$CONDA/bin/pip install datalad-osf
- uses: actions/checkout@v2
- name: Install minimal dependencies
timeout-minutes: 5
run: |
$CONDA/bin/pip install -r min-requirements.txt
$CONDA/bin/pip install .[tests]
Expand Down
4 changes: 2 additions & 2 deletions min-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ nibabel==3.0.1
nipype==1.5.1
niworkflows==1.4.2
nitransforms==21.0.0
numpy
numpy==1.21.0
pybids==0.12.1
scikit-image==0.18
scipy==1.6
scipy==1.6.0
templateflow==0.6
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
attrs>=20.1.0
nibabel>=3.0.1
nipype<2.0,>=1.5.1
niworkflows~=1.4.2
nitransforms~=21.0.0
numpy
niworkflows<1.6,>=1.4.2
nitransforms>=21.0.0
numpy>=1.21.0
pybids>=0.12.1
scikit-image>=0.18
scipy~=1.6
scipy>=1.6.0
templateflow>=0.6
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ install_requires =
nibabel >=3.0.1
nipype >=1.5.1,<2.0
niworkflows >= 1.4.2, < 1.6
nitransforms ~= 21.0.0
numpy
nitransforms >= 21.0.0
numpy >= 1.21.0
pybids >= 0.12.1
scikit-image >= 0.18
scipy ~= 1.6
scipy >= 1.6.0
templateflow >= 0.6
packages = find:
include_package_data = True
Expand Down

0 comments on commit d245dfd

Please sign in to comment.