We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8f8d7f commit 83a258aCopy full SHA for 83a258a
.travis.yml
@@ -40,6 +40,10 @@ matrix:
40
- python: 2.7
41
env:
42
- DEPENDS="numpy==1.5.1 pydicom==0.9.7"
43
+ # pydicom 1.0 (currently unreleased)
44
+ - python: 2.7
45
+ env:
46
+ - PYDICOM="v1.0"
47
# Documentation doctests
48
49
@@ -56,6 +60,8 @@ before_install:
56
60
- if [ "${TRAVIS_PYTHON_VERSION:0:1}" == "2" ]; then
57
61
if [ "$PYDICOM" == "1" ]; then
58
62
pip install pydicom;
63
+ elif [ "$PYDICOM" == "v1.0" ]; then
64
+ pip install git+https://github.com/darcymason/pydicom.git@43f278444d5cb2e4648135d3edcd430c363c6975;
59
65
fi
66
67
- if [ "${COVERAGE}" == "1" ]; then
0 commit comments