Skip to content

Commit 618d02a

Browse files
committed
MAINT: Update minimum pydicom version
Versions < 0.9.9 now break on install when they try to use http to install the 'distribute' package.
1 parent 7ff109c commit 618d02a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ matrix:
4545
# Minimum pydicom dependency
4646
- python: 2.7
4747
env:
48-
- DEPENDS="numpy==1.7.1 pydicom==0.9.7 pillow==2.6"
48+
- DEPENDS="numpy==1.7.1 pydicom==0.9.9 pillow==2.6"
4949
# test against numpy 1.7
5050
- python: 2.7
5151
env:

doc/source/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Requirements
9090
* NumPy_ 1.7.1 or greater
9191
* Six_ 1.3 or greater
9292
* SciPy_ (optional, for full SPM-ANALYZE support)
93-
* PyDICOM_ 0.9.7 or greater (optional, for DICOM support)
93+
* PyDICOM_ 0.9.9 or greater (optional, for DICOM support)
9494
* `Python Imaging Library`_ (optional, for PNG conversion in DICOMFS)
9595
* nose_ 0.11 or greater (optional, to run the tests)
9696
* mock_ (optional, to run the tests)

nibabel/info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ def cmp_pkg_version(version_str, pkg_version_str=__version__):
187187
# requirements.txt
188188
# .travis.yml
189189
NUMPY_MIN_VERSION = '1.7.1'
190-
PYDICOM_MIN_VERSION = '0.9.7'
190+
PYDICOM_MIN_VERSION = '0.9.9'
191191
SIX_MIN_VERSION = '1.3'
192192

193193
# Main setup parameters

0 commit comments

Comments
 (0)