@@ -19,6 +19,7 @@ classifiers = [
19
19
" Programming Language :: Python :: 3.10" ,
20
20
" Programming Language :: Python :: 3.11" ,
21
21
" Programming Language :: Python :: 3.12" ,
22
+ " Programming Language :: Python :: 3.13" ,
22
23
" Programming Language :: Python :: Implementation :: CPython" ,
23
24
" Programming Language :: Python :: Implementation :: PyPy" ,
24
25
" Topic :: Games/Entertainment" ,
@@ -73,7 +74,7 @@ install = ['--tags=runtime,python-runtime,pg-tag']
73
74
# dependencies. Here is where uv comes into the picture. It is an "installer" like pip,
74
75
# but faster. It has been observed to save a couple of minutes of CI time.
75
76
build-frontend = " build[uv]"
76
- build = " cp3{8,9,10,11,12}-* pp3{8,9,10}-*"
77
+ build = " cp3{8,9,10,11,12,13 }-* pp3{8,9,10}-*"
77
78
skip = " *-musllinux_*"
78
79
# build[uv] is verbose by default, so below flag is not needed here
79
80
# build-verbosity = 3
@@ -109,6 +110,7 @@ only-binary = ["numpy"]
109
110
# 1. skip all 32-bit manylinux (i686)
110
111
# 2. skip all pypy+arm combinations
111
112
# 3. skip all pypy 310 because it is so new numpy does not have wheels for it
113
+ # 4. skip all python 313 because numpy doesn't have wheels for it yet
112
114
[[tool .cibuildwheel .overrides ]]
113
- select = " {*-manylinux_i686,pp*-*{arm64,aarch64},pp310-*}"
115
+ select = " {*-manylinux_i686,pp*-*{arm64,aarch64},pp310-*,*p313-* }"
114
116
test-requires = []
0 commit comments