Skip to content

Commit 9d0c00e

Browse files
authored
Changes to update script (#1249)
1 parent b67c95d commit 9d0c00e

2 files changed

Lines changed: 16 additions & 15 deletions

File tree

data/templates/appveyor.yml/matrix

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
matrix:
2-
- DESCRIPTION: "Run tests on Windows with 32-bit Python 3.12"
2+
- DESCRIPTION: "Run tests on Windows with 32-bit Python 3.14"
33
MACHINE_TYPE: "x86"
44
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022
5-
PYTHON: "C:\\Python312"
6-
PYTHON_VERSION: "3.12"
5+
PYTHON: "C:\\Python314"
6+
PYTHON_VERSION: "3.14"
77
L2TBINARIES_TRACK: "dev"
88
TARGET: tests
9-
- DESCRIPTION: "Run tests on Windows with 64-bit Python 3.12"
9+
- DESCRIPTION: "Run tests on Windows with 64-bit Python 3.14"
1010
MACHINE_TYPE: "amd64"
1111
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022
12-
PYTHON: "C:\\Python312-x64"
13-
PYTHON_VERSION: "3.12"
12+
PYTHON: "C:\\Python314-x64"
13+
PYTHON_VERSION: "3.14"
1414
L2TBINARIES_TRACK: "dev"
1515
TARGET: tests
16-
- DESCRIPTION: "Build wheel on Windows with 32-bit Python 3.12"
16+
- DESCRIPTION: "Build wheel on Windows with 32-bit Python 3.14"
1717
MACHINE_TYPE: "amd64"
1818
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022
19-
PYTHON: "C:\\Python312-x64"
20-
PYTHON_VERSION: "3.12"
19+
PYTHON: "C:\\Python314-x64"
20+
PYTHON_VERSION: "3.14"
2121
L2TBINARIES_TRACK: "dev"
2222
TARGET: wheel
23-
- DESCRIPTION: "Build wheel on Windows with 64-bit Python 3.12"
23+
- DESCRIPTION: "Build wheel on Windows with 64-bit Python 3.14"
2424
MACHINE_TYPE: "amd64"
2525
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022
26-
PYTHON: "C:\\Python312-x64"
27-
PYTHON_VERSION: "3.12"
26+
PYTHON: "C:\\Python314-x64"
27+
PYTHON_VERSION: "3.14"
2828
L2TBINARIES_TRACK: "dev"
2929
TARGET: wheel
3030
- DESCRIPTION: "Run tests on Mac OS with Python 3.14"

tools/update.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -363,10 +363,11 @@ def _GetAvailableWheelPackages(self):
363363
# Ignore all other file extensions.
364364
continue
365365

366-
(package_name, package_version, python_tags,
367-
_, _) = package_filename[:-4].split('-')
366+
(package_name, package_version, python_tag1, python_tag2,
367+
_) = package_filename[:-4].split('-')
368368

369-
if python_tags not in (python_version_indicator, 'py2.py3', 'py3'):
369+
if (python_tag1 not in (python_version_indicator, 'py2.py3', 'py3') and
370+
python_tag2 != 'abi3'):
370371
# Ignore packages that are for different versions of Python.
371372
continue
372373

0 commit comments

Comments
 (0)