Skip to content

Commit e2639c4

Browse files
committed
MAINT: Update dependencies for Python >= 3.5
1 parent f7e66e7 commit e2639c4

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
@@ -29,11 +29,11 @@ matrix:
2929
# Absolute minimum dependencies
3030
- python: 3.5
3131
env:
32-
- DEPENDS="numpy==1.8 setuptools==30.3.0"
32+
- DEPENDS="numpy==1.10.1 setuptools==30.3.0"
3333
# Absolute minimum dependencies
3434
- python: 3.5
3535
env:
36-
- DEPENDS="numpy==1.8"
36+
- DEPENDS="numpy==1.10.1"
3737
- CHECK_TYPE="import"
3838
# Absolute minimum dependencies plus oldest MPL
3939
# Check these against:
@@ -42,11 +42,11 @@ matrix:
4242
# requirements.txt
4343
- python: 3.5
4444
env:
45-
- DEPENDS="numpy==1.8 matplotlib==1.3.1"
45+
- DEPENDS="numpy==1.10.1 matplotlib==1.3.1"
4646
# Minimum pydicom dependency
4747
- python: 3.5
4848
env:
49-
- DEPENDS="numpy==1.8 pydicom==0.9.9 pillow==2.6"
49+
- DEPENDS="numpy==1.10.1 pydicom==0.9.9 pillow==2.6"
5050
# pydicom master branch
5151
- python: 3.5
5252
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)