Skip to content

Commit 1f59c58

Browse files
pablogsalemmatyping
authored andcommitted
Add 3.11 branches (python#323)
1 parent 980dfe3 commit 1f59c58

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

master/custom/factories.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
UploadTestResults,
2121
)
2222

23-
main_branch_version = "3.11"
23+
main_branch_version = "3.12"
2424
CUSTOM_BRANCH_NAME = "custom"
2525

2626
# This (default) timeout is for each individual test file.
@@ -396,8 +396,8 @@ class RHEL7Build(UnixBuild):
396396
# sub-directories.
397397
#
398398
# On Fedora/RHEL specfile, the following directories are used:
399-
# /builddir/build/BUILD/Python-3.10: source code
400-
# /builddir/build/BUILD/Python-3.10/build/optimized: configure, make, tests
399+
# /builddir/build/BUILD/Python-3.11: source code
400+
# /builddir/build/BUILD/Python-3.11/build/optimized: configure, make, tests
401401
build_out_of_tree = True
402402

403403

@@ -420,7 +420,7 @@ class FedoraStableBuild(RHEL8Build):
420420
#
421421
# Try to be as close as possible to the Fedora specfile used to build
422422
# the RPM package:
423-
# https://src.fedoraproject.org/rpms/python3.10/blob/rawhide/f/python3.10.spec
423+
# https://src.fedoraproject.org/rpms/python3.11/blob/rawhide/f/python3.11.spec
424424
configureFlags = RHEL8Build.configureFlags + [
425425
# Options specific to Fedora
426426
# FIXME: enable this flag

master/custom/workers.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ def get_workers(settings):
162162
cpw(
163163
name="edelsohn-aix-ppc64",
164164
tags=['aix', 'unix', 'ppc64'],
165-
branches=['3.8', '3.9', '3.10', '3.x'],
165+
branches=['3.8', '3.9', '3.10', '3.11', '3.x'],
166166
parallel_tests=10,
167167
),
168168
cpw(
@@ -241,18 +241,18 @@ def get_workers(settings):
241241
cpw(
242242
name="kulikjak-solaris-sparcv9",
243243
tags=['solaris', 'unix', 'sparc', 'sparcv9'],
244-
branches=['3.9', '3.10', '3.x'],
244+
branches=['3.9', '3.10', '3.11', '3.x'],
245245
parallel_tests=16,
246246
),
247247
cpw(
248248
name="pablogsal-arch-x86_64",
249249
tags=['linux', 'unix', 'arch', 'amd64', 'x86-64'],
250-
branches=['3.9', '3.10', '3.x'],
250+
branches=['3.9', '3.10', '3.11', '3.x'],
251251
),
252252
cpw(
253253
name="pablogsal-macos-m1",
254254
tags=['macOS', 'unix', 'arm', 'arm64'],
255-
branches=['3.9', '3.10', '3.x'],
255+
branches=['3.9', '3.10', '3.11', '3.x'],
256256
parallel_tests=4,
257257
),
258258
cpw(

master/master.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ c["workers"] = [w.bb_worker for w in WORKERS]
117117
git_url = str(settings.git_url)
118118
git_branches = [
119119
(git_url, "3.x", "main"),
120+
(git_url, "3.11", "3.11"),
120121
(git_url, "3.10", "3.10"),
121122
(git_url, "3.9", "3.9"),
122123
(git_url, "3.8", "3.8"),

0 commit comments

Comments
 (0)