Skip to content

Commit bdc0b83

Browse files
author
Dan
committed
Updated appveyor config
1 parent 46779ca commit bdc0b83

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

appveyor.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ install:
9191

9292
# Upgrade to the latest version of pip to avoid it displaying warnings
9393
# about it being out of date.
94-
- "pip install --disable-pip-version-check --user --upgrade pip"
94+
- "pip install --disable-pip-version-check -U pip"
9595

9696
# Install the build dependencies of the project. If some dependencies contain
9797
# compiled extensions and are not provided as pre-built wheel packages,
@@ -108,14 +108,14 @@ cache:
108108

109109
build_script:
110110
# Build wheel
111-
- "%PYEXE% setup.py bdist_wheel bdist_wininst"
112-
- ps: "ls dist"
113-
# Now install the wheel.
114-
# I couldn't get wildcards to work for pip install, so stuff it
115-
# into a variable, using python to glob.
116-
- "%PYEXE% -c \"import glob; print(glob.glob('dist/*whl')[0])\" > whl.txt"
117-
- set /p PYWHL=<whl.txt
118-
- pip install %PYWHL%
111+
- "%PYEXE% setup.py install"
112+
# - ps: "ls dist"
113+
# # Now install the wheel.
114+
# # I couldn't get wildcards to work for pip install, so stuff it
115+
# # into a variable, using python to glob.
116+
# - "%PYEXE% -c \"import glob; print(glob.glob('dist/*whl')[0])\" > whl.txt"
117+
# - set /p PYWHL=<whl.txt
118+
# - pip install %PYWHL%
119119

120120
test_script:
121121
# Run the project tests

0 commit comments

Comments
 (0)