We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0aa55b1 commit 6c56908Copy full SHA for 6c56908
master/custom/factories.py
@@ -11,7 +11,7 @@
11
UploadTestResults,
12
)
13
14
-main_branch_version = "3.11"
+main_branch_version = "3.12"
15
CUSTOM_BRANCH_NAME = "custom"
16
17
# This (default) timeout is for each individual test file.
@@ -387,8 +387,8 @@ class RHEL7Build(UnixBuild):
387
# sub-directories.
388
#
389
# On Fedora/RHEL specfile, the following directories are used:
390
- # /builddir/build/BUILD/Python-3.10: source code
391
- # /builddir/build/BUILD/Python-3.10/build/optimized: configure, make, tests
+ # /builddir/build/BUILD/Python-3.11: source code
+ # /builddir/build/BUILD/Python-3.11/build/optimized: configure, make, tests
392
build_out_of_tree = True
393
394
@@ -411,7 +411,7 @@ class FedoraStableBuild(RHEL8Build):
411
412
# Try to be as close as possible to the Fedora specfile used to build
413
# the RPM package:
414
- # https://src.fedoraproject.org/rpms/python3.10/blob/rawhide/f/python3.10.spec
+ # https://src.fedoraproject.org/rpms/python3.11/blob/rawhide/f/python3.11.spec
415
configureFlags = RHEL8Build.configureFlags + [
416
# Options specific to Fedora
417
# FIXME: enable this flag
master/custom/workers.py
@@ -162,7 +162,7 @@ def get_workers(settings):
162
cpw(
163
name="edelsohn-aix-ppc64",
164
tags=['aix', 'unix', 'ppc64'],
165
- branches=['3.8', '3.9', '3.10', '3.x'],
+ branches=['3.8', '3.9', '3.10', '3.11', '3.x'],
166
parallel_tests=10,
167
),
168
@@ -241,18 +241,18 @@ def get_workers(settings):
241
242
name="kulikjak-solaris-sparcv9",
243
tags=['solaris', 'unix', 'sparc', 'sparcv9'],
244
- branches=['3.9', '3.10', '3.x'],
+ branches=['3.9', '3.10', '3.11', '3.x'],
245
parallel_tests=16,
246
247
248
name="pablogsal-arch-x86_64",
249
tags=['linux', 'unix', 'arch', 'amd64', 'x86-64'],
250
251
252
253
name="pablogsal-macos-m1",
254
tags=['macOS', 'unix', 'arm', 'arm64'],
255
256
parallel_tests=4,
257
258
master/master.cfg
@@ -117,6 +117,7 @@ c["workers"] = [w.bb_worker for w in WORKERS]
117
git_url = str(settings.git_url)
118
git_branches = [
119
(git_url, "3.x", "main"),
120
+ (git_url, "3.11", "3.11"),
121
(git_url, "3.10", "3.10"),
122
(git_url, "3.9", "3.9"),
123
(git_url, "3.8", "3.8"),
0 commit comments