Skip to content

Commit de47b93

Browse files
committed
Pull from a fix branch to workaround Blurb's failure
python/cpython#128879
1 parent b872e87 commit de47b93

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

manage_translation.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ def _call(command: str):
4949

5050

5151
PROJECT_SLUG = 'python-311'
52-
VERSION = '3.11'
53-
52+
VERSION = 'backport-40a4d88-3.11' # https://github.com/python/cpython/pull/128879
53+
GITHUB_ORG = 'miss-islington'
5454

5555
def recreate_tx_config():
5656
"""
@@ -85,7 +85,7 @@ def _get_files_to_delete():
8585

8686

8787
def _clone_cpython_repo(version: str):
88-
_call(f'git clone -b {version} --single-branch https://github.com/python/cpython.git --depth 1')
88+
_call(f'git clone -b {version} --single-branch https://github.com/{GITHUB_ORG}/cpython.git --depth 1')
8989

9090

9191
def _build_gettext():

0 commit comments

Comments
 (0)