From 3ae2e6dfd7079337a2e522dc8e67c4cdb233668b Mon Sep 17 00:00:00 2001 From: egeakman Date: Sun, 1 Jun 2025 20:26:53 -0400 Subject: [PATCH 1/3] Update default upstream branch --- README.md | 4 ++-- bootstrapper/bootstrapper.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 675324f..e46ece9 100644 --- a/README.md +++ b/README.md @@ -20,11 +20,11 @@ positional arguments: options: -h, --help show this help message and exit -b BRANCH, --branch BRANCH - CPython branch (e.g. 3.12) + CPython branch (e.g. 3.13) ``` ## Example ```bash -$ bootstrapper tr --branch 3.12 +$ bootstrapper tr --branch 3.13 ``` diff --git a/bootstrapper/bootstrapper.py b/bootstrapper/bootstrapper.py index 29aee58..59212c1 100644 --- a/bootstrapper/bootstrapper.py +++ b/bootstrapper/bootstrapper.py @@ -25,7 +25,7 @@ class Bootstrapper: def __init__( self, language: str, - branch: str = "3.12", + branch: str = "3.13", logger: logging.Logger = logging.getLogger(), ) -> None: self.language = language @@ -199,7 +199,7 @@ def main() -> None: help="IETF language tag (e.g. tr, pt-br)", ) parser.add_argument( - "-b", "--branch", type=str, default="3.12", help="CPython branch (e.g. 3.12)" + "-b", "--branch", type=str, default="3.13", help="CPython branch (e.g. 3.13)" ) args = parser.parse_args() logger = logging.getLogger() From 211e3c584a6c7b641f6ec37bdf7eda388a7db3b5 Mon Sep 17 00:00:00 2001 From: egeakman Date: Sun, 1 Jun 2025 20:29:39 -0400 Subject: [PATCH 2/3] Don't provide default branch in two places --- bootstrapper/bootstrapper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrapper/bootstrapper.py b/bootstrapper/bootstrapper.py index 59212c1..e170745 100644 --- a/bootstrapper/bootstrapper.py +++ b/bootstrapper/bootstrapper.py @@ -25,7 +25,7 @@ class Bootstrapper: def __init__( self, language: str, - branch: str = "3.13", + branch: str, logger: logging.Logger = logging.getLogger(), ) -> None: self.language = language From 9c35cdf76633fe3c17d3fafbb479a5545bff2139 Mon Sep 17 00:00:00 2001 From: egeakman Date: Sun, 1 Jun 2025 20:33:16 -0400 Subject: [PATCH 3/3] Update windows test --- .github/workflows/tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 39c52c0..eada9f4 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -28,7 +28,7 @@ jobs: - name: Install tree (Windows) if: matrix.os == 'windows-latest' - run: Install-Module PSScriptTools -scope CurrentUser -force + run: Install-Module PSScriptTools -scope CurrentUser -force -AllowClobber - name: Install tree (Linux) if: matrix.os == 'ubuntu-latest'