File tree 1 file changed +7
-4
lines changed 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -30,15 +30,18 @@ install:
30
30
# the parent CMD process).
31
31
- " SET PATH=%PYTHON%;%PYTHON%\\ Scripts;%PATH%"
32
32
33
+ # Set up a conda environment:
34
+ - conda config --set always_yes yes
35
+ - conda update -q conda
36
+ - conda info -a
37
+ - conda create -q -n test-environment python=%PYTHON_VERSION%
38
+ - activate test-environment
39
+
33
40
# Check that we have the expected version and architecture for Python
34
41
- " python --version"
35
42
- " python -c \" import struct; print(struct.calcsize('P') * 8)\" "
36
43
37
44
# Install the dependencies of the project.
38
- - conda update -q conda
39
- - conda info -a
40
- - conda create -q -n test-environment python=%PYTHON_VERSION%
41
- - activate test-environment
42
45
- " conda install --yes --quiet numpy scipy matplotlib nose h5py"
43
46
- " pip install pydicom"
44
47
- " python setup.py install"
You can’t perform that action at this time.
0 commit comments