Skip to content

Commit 9c78ac4

Browse files
author
Daniel Sanz
committed
chore: Bump to Python 3.13
1 parent 05a4896 commit 9c78ac4

File tree

6 files changed

+102
-33
lines changed

6 files changed

+102
-33
lines changed

.github/workflows/lint.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -4,32 +4,32 @@ name: Lint
44

55
on:
66
push:
7-
branches: [ "main" ]
7+
branches: ["main"]
88
pull_request:
9-
branches: [ "main" ]
9+
branches: ["main"]
1010

1111
jobs:
1212
lint:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v3
16-
- name: Set up Python 3.11
17-
uses: actions/setup-python@v4
18-
with:
19-
python-version: '3.11'
20-
- name: Install just
21-
run: |
22-
sudo apt update
23-
sudo snap install --edge --classic just
24-
- name: Install dependencies
25-
run: |
26-
python -m pip install --upgrade pip
27-
python -m pip install poetry
28-
poetry install
15+
- uses: actions/checkout@v3
16+
- name: Set up Python 3.13
17+
uses: actions/setup-python@v4
18+
with:
19+
python-version: "3.13"
20+
- name: Install just
21+
run: |
22+
sudo apt update
23+
sudo snap install --edge --classic just
24+
- name: Install dependencies
25+
run: |
26+
python -m pip install --upgrade pip
27+
python -m pip install poetry
28+
poetry install
2929
30-
- name: Lint
31-
run: |
32-
just lint
30+
- name: Lint
31+
run: |
32+
just lint
3333
3434
lint-commit:
3535
runs-on: ubuntu-latest

.github/workflows/security.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ name: Security
44

55
on:
66
push:
7-
branches: [ "main" ]
7+
branches: ["main"]
88
pull_request:
9-
branches: [ "main" ]
9+
branches: ["main"]
1010

1111
jobs:
1212
osv-scanner:
@@ -32,9 +32,9 @@ jobs:
3232
steps:
3333
- uses: actions/checkout@v3
3434
- name: Set up Python
35-
uses: actions/setup-python@v3
35+
uses: actions/setup-python@v4
3636
with:
37-
python-version: "3.11"
37+
python-version: "3.13"
3838
- name: Install dependencies
3939
run: |
4040
python -m pip install --upgrade pip

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@v3
2222
- name: Set up Python
23-
uses: actions/setup-python@v3
23+
uses: actions/setup-python@v4
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626
- name: Install just

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
venv := ".venv"
33
bin := venv + "/bin"
44
python := bin + "/python"
5-
python_version := "python3.12"
5+
python_version := "python3.13"
66
target_dirs := "src tests"
77

88

0 commit comments

Comments
 (0)