Skip to content

Commit 9b35205

Browse files
fixup
1 parent 3e8257a commit 9b35205

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

.github/workflows/docs.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,22 @@ name: Docs
33
on:
44
workflow_dispatch:
55
push:
6-
branches: ["master"]
6+
branches: ['master']
77

88
permissions:
99
contents: read
1010
pages: write
1111
id-token: write
1212

1313
concurrency:
14-
group: "pages"
14+
group: 'pages'
1515
cancel-in-progress: false
1616

1717
jobs:
1818
build:
1919
runs-on: ubuntu-latest
2020
env:
21-
PYTHON_VERSION: "3.12"
21+
PYTHON_VERSION: '3.12'
2222
steps:
2323
- name: Checkout
2424
uses: actions/checkout@v4

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release
33
on:
44
push:
55
tags:
6-
- "v*"
6+
- 'v*'
77

88
permissions:
99
id-token: write
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
env:
17-
PYTHON_VERSION: "3.12"
17+
PYTHON_VERSION: '3.12'
1818

1919
steps:
2020
- name: Checkout

.github/workflows/test.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Test
33
on:
44
push:
55
schedule:
6-
- cron: "0 0 * * 0"
6+
- cron: '0 0 * * 0'
77

88
permissions:
99
id-token: write
@@ -22,12 +22,16 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
25+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
2626

2727
steps:
2828
- name: Checkout
2929
uses: actions/checkout@v4
3030

31+
- run: |
32+
sudo apt-get install python-dev
33+
if: matrix.env == '3.13'
34+
3135
- uses: astral-sh/setup-uv@v5
3236
with:
3337
python-version: ${{ matrix.python-version }}

0 commit comments

Comments
 (0)