Skip to content

Commit 9c3da68

Browse files
committed
MNT: Set minimum pydicom to 1.0.1
Pydicom<1 used the setuptools' ``use_2to3`` option to achieve Python 3 compatiblity. Setuptools has removed lib2to3 in pypa/setuptools#2731, which causes our minimum requirements tests to fail.
1 parent 322fa38 commit 9c3da68

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ packages = find:
3737

3838
[options.extras_require]
3939
dicom =
40-
pydicom >=0.9.9
40+
pydicom >=1.0.0
4141
dicomfs =
4242
%(dicom)s
4343
pillow

tools/ci/env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ DEFAULT_OPT_DEPENDS="scipy matplotlib pillow pydicom h5py indexed_gzip"
99
# pydicom has skipped some important pre-releases, so enable a check against master
1010
PYDICOM_MASTER="git+https://github.com/pydicom/pydicom.git@master"
1111
# Minimum versions of optional requirements
12-
MIN_OPT_DEPENDS="matplotlib==1.5.3 pydicom==0.9.9 pillow==2.6"
12+
MIN_OPT_DEPENDS="matplotlib==1.5.3 pydicom==1.0.1 pillow==2.6"
1313

1414
# Numpy and scipy upload nightly/weekly/intermittent wheels
1515
NIGHTLY_WHEELS="https://pypi.anaconda.org/scipy-wheels-nightly/simple"

0 commit comments

Comments
 (0)