Skip to content

Commit 3525fca

Browse files
authored
Merge branch 'main' into pre-commit-ci-update-config
2 parents 23a2834 + 2cccb20 commit 3525fca

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.github/workflows/pre-commit.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- uses: actions/checkout@v4
14-
- uses: actions/setup-python@v4
14+
- uses: actions/setup-python@v5
1515
with:
1616
python-version: "3.x"
1717
- uses: pre-commit/[email protected]

.github/workflows/tests.yaml

+4-3
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,18 @@ jobs:
99
strategy:
1010
matrix:
1111
os: [macos-latest, windows-latest, ubuntu-latest]
12-
python-version: ["3.11", "3.12"]
13-
build-version: ["3.11", "3.12"]
12+
python-version: ["3.11", "3.12", "3.13"]
13+
build-version: ["3.11", "3.12", "3.13"]
1414

1515
steps:
1616
- name: Checkout repo
1717
uses: actions/checkout@v4
1818

1919
- name: Set up Python
20-
uses: actions/setup-python@v4
20+
uses: actions/setup-python@v5
2121
with:
2222
python-version: ${{ matrix.python-version }}
23+
allow-prereleases: true
2324

2425
- name: Install tree (macOS)
2526
if: matrix.os == 'macos-latest'

pyproject.toml

+4
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ classifiers = [
3434
"Programming Language :: Python :: 3.10",
3535
"Programming Language :: Python :: 3.11",
3636
"Programming Language :: Python :: 3.12",
37+
"Programming Language :: Python :: 3.13",
3738
"Topic :: Utilities",
3839
]
3940
dynamic = [
@@ -62,3 +63,6 @@ path = "bootstrapper/__init__.py"
6263
[tool.isort]
6364
profile = "black"
6465
known_first_party = "bootstrapper"
66+
67+
[tool.pyproject-fmt]
68+
max_supported_python = "3.13"

0 commit comments

Comments
 (0)