Skip to content

Commit 2009ceb

Browse files
authored
Merge pull request #164 from mgxd/maint/loosen-deps
MAINT: Loosen dependencies
2 parents 951119e + 5694f08 commit 2009ceb

File tree

2 files changed

+21
-4
lines changed

2 files changed

+21
-4
lines changed

.readthedocs.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Read the Docs configuration file
2+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
3+
4+
version: 2
5+
6+
build:
7+
os: ubuntu-20.04
8+
tools:
9+
python: "3.8"
10+
11+
sphinx:
12+
configuration: docs/conf.py
13+
14+
python:
15+
install:
16+
- path: .
17+
extra_requirements:
18+
- all
19+
- requirements: docs/requirements.txt

setup.cfg

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,8 @@ url = https://github.com/nipy/nitransforms
2222
[options]
2323
python_requires = >= 3.7
2424
install_requires =
25-
numpy ~= 1.21.0; python_version<'3.8'
26-
numpy ~= 1.21; python_version>'3.7'
27-
scipy ~= 1.6.0; python_version<'3.8'
28-
scipy ~= 1.6; python_version>'3.7'
25+
numpy >= 1.21.0
26+
scipy >= 1.6.0
2927
nibabel >= 3.0
3028
h5py
3129
test_requires =

0 commit comments

Comments
 (0)