Skip to content

Commit cea9bc3

Browse files
committed
Update Python versions in appveyor.yml.
* Remove Python 3.5 and 3.6 which are already unsupported. * Add Python 3.11.
1 parent bb0211e commit cea9bc3

File tree

1 file changed

+16
-29
lines changed

1 file changed

+16
-29
lines changed

appveyor.yml

Lines changed: 16 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -11,51 +11,26 @@ environment:
1111
# Pre-installed Python versions, which Appveyor may upgrade to
1212
# a later point release.
1313
# See: http://www.appveyor.com/docs/installed-software#python
14-
15-
- PYTHON: "C:\\Python35"
16-
PYTHON_VERSION: "3.5.x" # currently 3.5.4
17-
PYTHON_ARCH: "32"
18-
OPENSSL_LIB: "https://ci.appveyor.com/api/buildjobs/fakubeldw67e9pmg/artifacts/YARA.OpenSSL.x86.1.1.1.nupkg"
19-
VS: "Visual Studio 14 2015"
20-
21-
- PYTHON: "C:\\Python35-x64"
22-
PYTHON_VERSION: "3.5.x" # currently 3.5.4
23-
PYTHON_ARCH: "64"
24-
OPENSSL_LIB: "https://ci.appveyor.com/api/buildjobs/q63539qt9yqaqspo/artifacts/YARA.OpenSSL.x64.1.1.1.nupkg"
25-
VS: "Visual Studio 14 2015 Win64"
26-
27-
- PYTHON: "C:\\Python36"
28-
PYTHON_VERSION: "3.6.x" # currently 3.6.8
29-
PYTHON_ARCH: "32"
30-
OPENSSL_LIB: "https://ci.appveyor.com/api/buildjobs/fakubeldw67e9pmg/artifacts/YARA.OpenSSL.x86.1.1.1.nupkg"
31-
VS: "Visual Studio 14 2015"
32-
33-
- PYTHON: "C:\\Python36-x64"
34-
PYTHON_VERSION: "3.6.x" # currently 3.6.8
35-
PYTHON_ARCH: "64"
36-
OPENSSL_LIB: "https://ci.appveyor.com/api/buildjobs/q63539qt9yqaqspo/artifacts/YARA.OpenSSL.x64.1.1.1.nupkg"
37-
VS: "Visual Studio 14 2015 Win64"
38-
3914
- PYTHON: "C:\\Python37"
40-
PYTHON_VERSION: "3.7.x" # currently 3.7.0
15+
PYTHON_VERSION: "3.7.x"
4116
PYTHON_ARCH: "32"
4217
OPENSSL_LIB: "https://ci.appveyor.com/api/buildjobs/fakubeldw67e9pmg/artifacts/YARA.OpenSSL.x86.1.1.1.nupkg"
4318
VS: "Visual Studio 14 2015"
4419

4520
- PYTHON: "C:\\Python37-x64"
46-
PYTHON_VERSION: "3.7.x" # currently 3.7.0
21+
PYTHON_VERSION: "3.7.x"
4722
PYTHON_ARCH: "64"
4823
OPENSSL_LIB: "https://ci.appveyor.com/api/buildjobs/q63539qt9yqaqspo/artifacts/YARA.OpenSSL.x64.1.1.1.nupkg"
4924
VS: "Visual Studio 14 2015 Win64"
5025

5126
- PYTHON: "C:\\Python38"
52-
PYTHON_VERSION: "3.8.x" # currently 3.8.0
27+
PYTHON_VERSION: "3.8.x"
5328
PYTHON_ARCH: "32"
5429
OPENSSL_LIB: "https://ci.appveyor.com/api/buildjobs/fakubeldw67e9pmg/artifacts/YARA.OpenSSL.x86.1.1.1.nupkg"
5530
VS: "Visual Studio 14 2015"
5631

5732
- PYTHON: "C:\\Python38-x64"
58-
PYTHON_VERSION: "3.8.x" # currently 3.8.0
33+
PYTHON_VERSION: "3.8.x"
5934
PYTHON_ARCH: "64"
6035
OPENSSL_LIB: "https://ci.appveyor.com/api/buildjobs/q63539qt9yqaqspo/artifacts/YARA.OpenSSL.x64.1.1.1.nupkg"
6136
VS: "Visual Studio 14 2015 Win64"
@@ -84,6 +59,18 @@ environment:
8459
OPENSSL_LIB: "https://ci.appveyor.com/api/buildjobs/q63539qt9yqaqspo/artifacts/YARA.OpenSSL.x64.1.1.1.nupkg"
8560
VS: "Visual Studio 14 2015 Win64"
8661

62+
- PYTHON: "C:\\Python311"
63+
PYTHON_VERSION: "3.11.0"
64+
PYTHON_ARCH: "32"
65+
OPENSSL_LIB: "https://ci.appveyor.com/api/buildjobs/fakubeldw67e9pmg/artifacts/YARA.OpenSSL.x86.1.1.1.nupkg"
66+
VS: "Visual Studio 14 2015"
67+
68+
- PYTHON: "C:\\Python311-x64"
69+
PYTHON_VERSION: "3.11.0"
70+
PYTHON_ARCH: "64"
71+
OPENSSL_LIB: "https://ci.appveyor.com/api/buildjobs/q63539qt9yqaqspo/artifacts/YARA.OpenSSL.x64.1.1.1.nupkg"
72+
VS: "Visual Studio 14 2015 Win64"
73+
8774
install:
8875
# If there is a newer build queued for the same PR, cancel this one.
8976
# The AppVeyor 'rollout builds' option is supposed to serve the same

0 commit comments

Comments
 (0)