Skip to content

Commit 7fb8405

Browse files
colindeanGitHub Enterprise
authored andcommitted
Merge pull request #21 from python/py313
Python 3.13
2 parents b44cbb4 + b84b131 commit 7fb8405

File tree

6 files changed

+257
-178
lines changed

6 files changed

+257
-178
lines changed

.github/workflows/make-based-ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ on:
66
pull_request:
77
branches: [ "main" ]
88

9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
11+
cancel-in-progress: true
12+
913
jobs:
1014
poetry-checks:
1115
runs-on: ubuntu-latest
@@ -25,7 +29,7 @@ jobs:
2529
matrix:
2630
os:
2731
- ubuntu-latest
28-
- macos-13
32+
- macos-15
2933
- macos-14
3034
runs-on: ${{ matrix.os }}
3135

.github/workflows/pre-commit-updates.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ jobs:
1616
- uses: actions/setup-python@v5
1717

1818
- uses: browniebroke/pre-commit-autoupdate-action@v1.0.0
19+
env:
20+
SKIP: "Reset Poetry Project Version to 0.0.0"
1921

2022
- uses: peter-evans/create-pull-request@v7
2123
if: always()

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# See https://pre-commit.com/hooks.html for more hooks
33
repos:
44
- repo: https://github.com/pre-commit/pre-commit-hooks
5-
rev: v4.6.0
5+
rev: v5.0.0
66
hooks:
77
- id: trailing-whitespace
88
- id: end-of-file-fixer
@@ -19,13 +19,13 @@ repos:
1919

2020
# strips outputs from notebook files to reduce churn and minimize repo size
2121
- repo: https://github.com/kynan/nbstripout
22-
rev: "0.7.1"
22+
rev: "0.8.1"
2323
hooks:
2424
- id: nbstripout
2525

2626
# Prevent old Pythonisms
2727
- repo: https://github.com/asottile/pyupgrade
28-
rev: v3.17.0
28+
rev: v3.19.1
2929
hooks:
3030
- id: pyupgrade
3131

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.12
1+
3.13

0 commit comments

Comments
 (0)