Skip to content
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