Skip to content

Commit b1ae9c8

Browse files
committed
build: we now ship wheels for 3.14
1 parent 1a37d9e commit b1ae9c8

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/kit.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ jobs:
8080
# # PYVERSIONS. Available versions: https://pypi.org/project/cibuildwheel/
8181
# # Note that cibuildwheel recommends not shipping wheels for pre-release versions
8282
# # of Python: https://cibuildwheel.readthedocs.io/en/stable/options/#enable
83+
# # When changing this, also adjust SHIPPING_WHEELS in env.py.
8384
#
8485
# pys = ["cp310", "cp311", "cp312", "cp313", "cp314"]
8586
#

coverage/env.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
GIL = getattr(sys, "_is_gil_enabled", lambda: True)()
4444

4545
# Do we ship compiled coveragepy wheels for this version?
46-
SHIPPING_WHEELS = CPYTHON and PYVERSION[:2] <= (3, 13)
46+
SHIPPING_WHEELS = CPYTHON and PYVERSION[:2] <= (3, 14)
4747

4848
# Should we default to sys.monitoring?
4949
SYSMON_DEFAULT = CPYTHON and PYVERSION >= (3, 14)

0 commit comments

Comments
 (0)