Skip to content

Commit 99a9f7c

Browse files
committed
remove 314t
1 parent 73ec838 commit 99a9f7c

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ jobs:
155155
strategy:
156156
matrix:
157157
Python311-Linux:
158-
python.version: '3.11'
158+
python.version: '3.12'
159159
maxParallel: 3
160160

161161
steps:

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ manylinux-x86_64-image = "manylinux_2_28" # "manylinux2014"
109109
[tool.cibuildwheel.linux]
110110
archs = ["x86_64"]
111111
build = "cp*"
112-
skip = "cp36-* cp37-* cp38-* cp39-* cp314-* cp315-* pypy* *musllinux*"
112+
skip = "cp36-* cp37-* cp38-* cp39-* cp314-* cp314t-* cp315-* pypy* *musllinux*"
113113
manylinux-x86_64-image = "manylinux_2_28" # "manylinux2014"
114114
before-build = "pip install auditwheel-symbols abi3audit"
115115
build-verbosity = 1
@@ -126,13 +126,13 @@ environment = """
126126
DYLD_LIBRARY_PATH='$(brew --prefix libomp)/lib:$DYLD_LIBRARY_PATH'
127127
"""
128128
build = "cp*"
129-
skip = "cp36-* cp37-* cp38-* cp39-* cp314-* cp315-* pypy* pp*"
129+
skip = "cp36-* cp37-* cp38-* cp39-* cp314-* cp314t-* cp315-* pypy* pp*"
130130
before-build = "brew install libomp llvm&&echo 'export PATH=\"/opt/homebrew/opt/llvm/bin:$PATH\"' >> /Users/runner/.bash_profile"
131131

132132
[tool.cibuildwheel.windows]
133133
archs = ["AMD64"]
134134
build = "cp*"
135-
skip = "cp36-* cp37-* cp38-* cp39-* cp314-* cp315-* pypy*"
135+
skip = "cp36-* cp37-* cp38-* cp39-* cp314-* cp314t-* cp315-* pypy*"
136136

137137
[tool.cython-lint]
138138
max-line-length = 88

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -693,9 +693,10 @@ def get_package_data():
693693
"Operating System :: Unix",
694694
"Operating System :: MacOS",
695695
"Programming Language :: Python :: 3",
696-
"Programming Language :: Python :: 3.9",
697696
"Programming Language :: Python :: 3.10",
698697
"Programming Language :: Python :: 3.11",
698+
"Programming Language :: Python :: 3.12",
699+
"Programming Language :: Python :: 3.13",
699700
],
700701
cmdclass={
701702
"build_ext": cmake_build_ext,

0 commit comments

Comments
 (0)