Skip to content

Commit efea23b

Browse files
committed
MAINT: Update dependencies for Python >= 3.5
1 parent 930ee6c commit efea23b

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ matrix:
3030
# Absolute minimum dependencies
3131
- python: 3.5
3232
env:
33-
- DEPENDS="numpy==1.8 setuptools==30.3.0"
33+
- DEPENDS="numpy==1.10.1 setuptools==30.3.0"
3434
# Absolute minimum dependencies
3535
- python: 3.5
3636
env:
37-
- DEPENDS="numpy==1.8"
37+
- DEPENDS="numpy==1.10.1"
3838
- CHECK_TYPE="import"
3939
# Absolute minimum dependencies plus oldest MPL
4040
# Check these against:
@@ -43,11 +43,11 @@ matrix:
4343
# requirements.txt
4444
- python: 3.5
4545
env:
46-
- DEPENDS="numpy==1.8 matplotlib==1.3.1"
46+
- DEPENDS="numpy==1.10.1 matplotlib==1.3.1"
4747
# Minimum pydicom dependency
4848
- python: 3.5
4949
env:
50-
- DEPENDS="numpy==1.8 pydicom==0.9.9 pillow==2.6"
50+
- DEPENDS="numpy==1.10.1 pydicom==0.9.9 pillow==2.6"
5151
# pydicom master branch
5252
- python: 3.5
5353
env:

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# doc/source/installation.rst
77

88
six>=1.3
9-
numpy>=1.8
9+
numpy>=1.10.1

setup.cfg

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,13 @@ provides =
2929
nisext
3030

3131
[options]
32-
python_requires = >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*
32+
python_requires = >=3.5
3333
install_requires =
34-
numpy >=1.8
34+
numpy >=1.10.1
3535
six >=1.3
36-
bz2file ; python_version < "3.0"
37-
tests_require = nose
36+
tests_require =
37+
nose >=0.10.1
38+
mock
3839
test_suite = nose.collector
3940
zip_safe = False
4041
packages = find:
@@ -47,6 +48,7 @@ doc =
4748
sphinx >=0.3
4849
test =
4950
nose >=0.10.1
51+
mock
5052
all =
5153
%(dicom)s
5254
%(doc)s

0 commit comments

Comments
 (0)