-
Notifications
You must be signed in to change notification settings - Fork 247
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removing Python 2 configurations for CI runs
- Loading branch information
1 parent
379cf2d
commit 91fffc4
Showing
4 changed files
with
26 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
This is a summary of the Python versions and platforms covered by the different CI platforms: | ||
|
||
| | 3.5 | 3.6 | 3.7 | 3.8 | | ||
|----------|------------|--------------------|-----------------------|------------------| | ||
| Linux | Travis CI | CircleCI | AppVeyor | Azure Pipelines | | ||
| macOS | | CircleCI | Travis CI* / CircleCI | Azure Pipelines | | ||
| Windows | TravisCI | AppVeyor (32-bit) | AppVeyor (64-bit) | Azure Pipelines | | ||
|
||
> * Not really pinned, but dependent on the (default) version of image used. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
image: | ||
- Ubuntu | ||
- Visual Studio 2015 | ||
environment: | ||
matrix: | ||
- image: Ubuntu | ||
- image: Visual Studio 2015 | ||
PYTHON_VERSION: 36 | ||
- image: Visual Studio 2015 | ||
PYTHON_VERSION: 37-x64 | ||
|
||
build_script: | ||
- cmd: "C:\\Python27\\python.exe -m pip install -r requirements-dev.txt" | ||
- cmd: "C:\\Python%PYTHON_VERSION%\\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:\\Python%PYTHON_VERSION%\\python.exe -u ./bin/run_tests.py" | ||
- sh: "${HOME}/.localpython3.7.4/bin/python3 ./bin/run_tests.py" |