Skip to content

Commit

Permalink
Changed Windows CI tests to use Python 3.10 (#443)
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz committed Nov 15, 2021
1 parent b3b6577 commit f99cd72
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
environment:
matrix:
- DESCRIPTION: "Windows with 32-bit Python 3.9"
- DESCRIPTION: "Windows with 32-bit Python 3.10"
MACHINE_TYPE: "x86"
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
PYTHON: "C:\\Python39"
PYTHON_VERSION: "3.9"
PYTHON: "C:\\Python310"
PYTHON_VERSION: "3.10"
L2TBINARIES_TRACK: "dev"
- DESCRIPTION: "Windows with 64-bit Python 3.9"
- DESCRIPTION: "Windows with 64-bit Python 3.10"
MACHINE_TYPE: "amd64"
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
PYTHON: "C:\\Python39-x64"
PYTHON_VERSION: "3.9"
PYTHON: "C:\\Python310-x64"
PYTHON_VERSION: "3.10"
L2TBINARIES_TRACK: "dev"
- DESCRIPTION: "Mac OS with Python 3.9"
- DESCRIPTION: "Mac OS with Python 3.10"
APPVEYOR_BUILD_WORKER_IMAGE: macos
HOMEBREW_NO_INSTALL_CLEANUP: 1

Expand Down
6 changes: 3 additions & 3 deletions config/appveyor/runtests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export CFLAGS="-I/usr/local/include -I/usr/local/opt/openssl@1.1/include ${CFLAG
export LDFLAGS="-L/usr/local/lib -L/usr/local/opt/openssl@1.1/lib ${LDFLAGS}";
export TOX_TESTENV_PASSENV="CFLAGS LDFLAGS";

# Set the following environment variables to ensure tox can find Python 3.9.
export PATH="/usr/local/opt/python@3.9/bin:${PATH}";
# Set the following environment variables to ensure tox can find Python 3.10.
export PATH="/usr/local/opt/python@3.10/bin:${PATH}";

tox -e py39
tox -e py310

0 comments on commit f99cd72

Please sign in to comment.