Skip to content

Commit b6df548

Browse files
Upgrade coverage to 7.10.7
This adds native-speed tracing support for Python 3.14 to the built-in test runners.
1 parent 385f818 commit b6df548

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

third_party/python/BUILD

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ python_wheel(
121121
deps = [":six"],
122122
)
123123

124-
_coverage_version = "7.6.4"
124+
_coverage_version = "7.10.7"
125125

126126
_coverage_tags = {
127127
"darwin_amd64": {
@@ -133,6 +133,7 @@ _coverage_tags = {
133133
"macosx_10_13_x86_64": [
134134
["cp312", "cp312"],
135135
["cp313", "cp313"],
136+
["cp314", "cp314"],
136137
],
137138
},
138139
"darwin_arm64": {
@@ -142,15 +143,17 @@ _coverage_tags = {
142143
["cp311", "cp311"],
143144
["cp312", "cp312"],
144145
["cp313", "cp313"],
146+
["cp314", "cp314"],
145147
],
146148
},
147149
"linux_amd64": {
148-
"manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64": [
150+
"manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64": [
149151
["cp39", "cp39"],
150152
["cp310", "cp310"],
151153
["cp311", "cp311"],
152154
["cp312", "cp312"],
153155
["cp313", "cp313"],
156+
["cp314", "cp314"],
154157
],
155158
},
156159
"linux_arm64": {
@@ -160,11 +163,14 @@ _coverage_tags = {
160163
["cp311", "cp311"],
161164
["cp312", "cp312"],
162165
["cp313", "cp313"],
166+
["cp314", "cp314"],
163167
],
164168
},
169+
# There are no pre-built architecture-specific wheels for FreeBSD, so fall back to the pure-Python one.
170+
# This means that native-speed tracing support is unavailable on FreeBSD.
165171
"other": {
166172
"any": [
167-
["pp39.pp310", "none"],
173+
["py3", "none"],
168174
],
169175
},
170176
}

0 commit comments

Comments
 (0)