Skip to content

Commit e053e91

Browse files
authored
Merge pull request #745 from nipy/appveyor/use_venv
CI: Virtualenvs in AppVeyor
2 parents abc2f43 + c24d1b1 commit e053e91

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

appveyor.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,13 @@ install:
2121
# the parent CMD process).
2222
- SET PATH=%PYTHON%;%PYTHON%\Scripts;%PATH%
2323

24+
- python -m pip install --upgrade pip virtualenv
25+
- virtualenv --python=python venv
26+
- venv\Scripts\activate
27+
- python --version
28+
2429
# Install the dependencies of the project.
25-
- python -m pip install --upgrade pip setuptools wheel
30+
- pip install --upgrade pip setuptools>=27.0 wheel
2631
- pip install numpy scipy matplotlib h5py pydicom
2732
- pip install nose mock coverage codecov
2833
- pip install .

0 commit comments

Comments
 (0)