Skip to content

Commit d812862

Browse files
authored
Update the default upstream branch to 3.13 (#19)
* Update default upstream branch * Don't provide default branch in two places * Update windows test
1 parent b7dc02f commit d812862

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
- name: Install tree (Windows)
3030
if: matrix.os == 'windows-latest'
31-
run: Install-Module PSScriptTools -scope CurrentUser -force
31+
run: Install-Module PSScriptTools -scope CurrentUser -force -AllowClobber
3232

3333
- name: Install tree (Linux)
3434
if: matrix.os == 'ubuntu-latest'

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ positional arguments:
2020
options:
2121
-h, --help show this help message and exit
2222
-b BRANCH, --branch BRANCH
23-
CPython branch (e.g. 3.12)
23+
CPython branch (e.g. 3.13)
2424
```
2525

2626
## Example
2727

2828
```bash
29-
$ bootstrapper tr --branch 3.12
29+
$ bootstrapper tr --branch 3.13
3030
```

bootstrapper/bootstrapper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class Bootstrapper:
2525
def __init__(
2626
self,
2727
language: str,
28-
branch: str = "3.12",
28+
branch: str,
2929
logger: logging.Logger = logging.getLogger(),
3030
) -> None:
3131
self.language = language
@@ -199,7 +199,7 @@ def main() -> None:
199199
help="IETF language tag (e.g. tr, pt-br)",
200200
)
201201
parser.add_argument(
202-
"-b", "--branch", type=str, default="3.12", help="CPython branch (e.g. 3.12)"
202+
"-b", "--branch", type=str, default="3.13", help="CPython branch (e.g. 3.13)"
203203
)
204204
args = parser.parse_args()
205205
logger = logging.getLogger()

0 commit comments

Comments
 (0)