Skip to content

Update the default upstream branch to 3.13 #19

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
4 changes: 2 additions & 2 deletions bootstrapper/bootstrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class Bootstrapper:
def __init__(
self,
language: str,
branch: str = "3.12",
branch: str,
logger: logging.Logger = logging.getLogger(),
) -> None:
self.language = language
Expand Down Expand Up @@ -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()
Expand Down