Skip to content

Commit 3ae2e6d

Browse files
committed
Update default upstream branch
1 parent b7dc02f commit 3ae2e6d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

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 = "3.13",
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)