Skip to content

Commit 89e3798

Browse files
authored
Update GitHub Actions, add Python 3.13 (#188)
1 parent 99840ee commit 89e3798

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/github-sponsors.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout 🛎️
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v4
1414

1515
- name: Generate Sponsors 💖
1616
uses: JamesIves/github-sponsors-readme-action@v1

.github/workflows/publish-to-docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
uses: actions/checkout@v4
2323

2424
- name: Set up Python
25-
uses: actions/setup-python@v4
25+
uses: actions/setup-python@v5
2626
with:
27-
python-version: "3.x"
27+
python-version: '3.x'
2828

2929
- name: Install TOML
3030
run: pip install toml

.github/workflows/run-tests.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
strategy:
1212
matrix:
13-
python-version: ['3.10', '3.11', '3.12']
13+
python-version: ['3.10', '3.11', '3.12', '3.13']
1414

1515
steps:
1616
- name: Checkout project
@@ -23,7 +23,7 @@ jobs:
2323
uses: actions/setup-python@v5
2424
with:
2525
python-version: ${{ matrix.python-version }}
26-
cache: "poetry" # caching dependencies from poetry.lock
26+
cache: poetry # caching dependencies from poetry.lock
2727

2828
- name: Install Poetry dependencies (CPU)
2929
run: poetry install -E cpu
@@ -41,7 +41,7 @@ jobs:
4141

4242
strategy:
4343
matrix:
44-
python-version: ['3.10', '3.11', '3.12']
44+
python-version: ['3.10', '3.11', '3.12', '3.13']
4545

4646
steps:
4747
- name: Checkout project
@@ -54,7 +54,7 @@ jobs:
5454
uses: actions/setup-python@v5
5555
with:
5656
python-version: ${{ matrix.python-version }}
57-
cache: "poetry" # caching dependencies from poetry.lock
57+
cache: poetry # caching dependencies from poetry.lock
5858

5959
- name: Install Poetry dependencies (CPU)
6060
run: poetry install -E cpu
@@ -73,7 +73,7 @@ jobs:
7373

7474
strategy:
7575
matrix:
76-
python-version: ['3.10', '3.11', '3.12']
76+
python-version: ['3.10', '3.11', '3.12', '3.13']
7777

7878
steps:
7979
- name: Checkout project
@@ -86,7 +86,7 @@ jobs:
8686
uses: actions/setup-python@v5
8787
with:
8888
python-version: ${{ matrix.python-version }}
89-
cache: "poetry" # caching dependencies from poetry.lock
89+
cache: poetry # caching dependencies from poetry.lock
9090

9191
- name: Install Poetry dependencies (CPU)
9292
run: poetry install -E cpu

0 commit comments

Comments
 (0)