Skip to content

Commit ee7abe7

Browse files
committed
Change AppVeyor to test more versions, no wheels
We already generate wheels in our GitHub Actions via cibuildwheel, so there's no need to generate them in AppVeyor anymore (we used to when we manually generated wheels for different platforms). On the flip side, we can test against more python versions, and only focus on 64-bit builds. Keeping AppVeyor around is still a good thing, as it gives us quick feedback if there's something broken with a build on Windows without the overheads of cibuildwheel. Signed-off-by: Rodrigo Tobar <[email protected]>
1 parent 5b7858b commit ee7abe7

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

.appveyor.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,25 @@
55
# Copyright by UWA (in the framework of the ICRAR)
66
# All rights reserved
77

8+
image: Visual Studio 2019
9+
810
environment:
911

1012
matrix:
1113

1214
# For Python versions available on Appveyor, see
1315
# http://www.appveyor.com/docs/installed-software#python
14-
- PYTHON: "C:\\Python35"
15-
- PYTHON: "C:\\Python36"
16-
- PYTHON: "C:\\Python37"
17-
- PYTHON: "C:\\Python38"
1816
- PYTHON: "C:\\Python35-x64"
17+
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
1918
- PYTHON: "C:\\Python36-x64"
2019
- PYTHON: "C:\\Python37-x64"
2120
- PYTHON: "C:\\Python38-x64"
21+
- PYTHON: "C:\\Python39-x64"
22+
- PYTHON: "C:\\Python310-x64"
23+
- PYTHON: "C:\\Python311-x64"
2224

2325
install:
24-
- "%PYTHON%\\python.exe -m pip install wheel pytest"
26+
- "%PYTHON%\\python.exe -m pip install pytest"
2527
- cmd: git submodule update --init --recursive
2628

2729
build: off
@@ -32,8 +34,5 @@ test_script:
3234
- "%PYTHON%\\python.exe setup.py develop"
3335
- "%PYTHON%\\python.exe -mpytest -v"
3436

35-
after_test:
36-
- "%PYTHON%\\python.exe setup.py bdist_wheel"
37-
3837
artifacts:
3938
- path: dist\*

0 commit comments

Comments
 (0)