Removing Python 2 configurations for CI runs

This commit is contained in:
Yannick Jadoul
2020-02-04 11:58:50 +01:00
parent 67022e620e
commit 692c64ffd9
5 changed files with 44 additions and 37 deletions
+2 -2
View File
@@ -3,9 +3,9 @@ image:
- Visual Studio 2015
build_script:
- cmd: "C:\\Python27\\python.exe -m pip install -r requirements-dev.txt"
- cmd: "C:\\Python37\\python.exe -m pip install -r requirements-dev.txt"
- sh: "${HOME}/.localpython3.7.4/bin/python3 -m pip install -r requirements-dev.txt"
# the '-u' flag is required so the output is in the correct order.
# See https://github.com/joerick/cibuildwheel/pull/24 for more info.
- cmd: "C:\\Python27\\python.exe -u ./bin/run_tests.py"
- cmd: "C:\\Python37\\python.exe -u ./bin/run_tests.py"
- sh: "${HOME}/.localpython3.7.4/bin/python3 ./bin/run_tests.py"