Skip to content

Commit 1c0afd7

Browse files
committed
Clean code !test
1 parent d7f0042 commit 1c0afd7

2 files changed

Lines changed: 17 additions & 17 deletions

File tree

.github/workflows/CI.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@v4
2020
- uses: actions/setup-python@v5
2121
with:
22-
python-version: '3.13'
22+
python-version: "3.13"
2323
- uses: PyO3/maturin-action@v1
2424
with:
2525
command: sdist
@@ -105,7 +105,7 @@ jobs:
105105
- name: set up python
106106
uses: actions/setup-python@v5
107107
with:
108-
python-version: '3.13'
108+
python-version: "3.13"
109109
architecture: ${{ matrix.python-architecture || 'x64' }}
110110

111111
- run: pip install -U twine
@@ -140,7 +140,7 @@ jobs:
140140
- name: set up python
141141
uses: actions/setup-python@v5
142142
with:
143-
python-version: '3.13'
143+
python-version: "3.13"
144144

145145
- run: pip install -U twine
146146

.github/workflows/python-test.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -14,24 +14,24 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
- '3.8'
18-
- '3.9'
19-
- '3.10'
20-
- '3.11'
21-
- '3.12'
22-
- '3.13'
23-
- '3.14'
24-
- '3.14t'
25-
- 'pypy3.10'
26-
- 'pypy3.11'
27-
- 'graalpy-3.11'
17+
- "3.8"
18+
- "3.9"
19+
- "3.10"
20+
- "3.11"
21+
- "3.12"
22+
- "3.13"
23+
- "3.14"
24+
- "3.14t"
25+
- "pypy3.10"
26+
- "pypy3.11"
27+
- "graalpy-3.11"
2828

2929
runs-on: ubuntu-latest
3030
continue-on-error: ${{ endsWith(matrix.python-version, 't') }}
3131

3232
steps:
3333
- uses: actions/checkout@v4
34-
34+
3535
- name: install rust stable
3636
uses: dtolnay/rust-toolchain@stable
3737

@@ -65,14 +65,14 @@ jobs:
6565
runs-on: ${{ matrix.os }}-latest
6666
steps:
6767
- uses: actions/checkout@v4
68-
68+
6969
- name: install rust stable
7070
uses: dtolnay/rust-toolchain@stable
7171

7272
- name: set up python
7373
uses: actions/setup-python@v5
7474
with:
75-
python-version: '3.13'
75+
python-version: "3.13"
7676

7777
- run: pip install pytest pytest-asyncio maturin
7878

0 commit comments

Comments
 (0)