Skip to content

Commit 26625e4

Browse files
authored
Fix Python version in pre-commit and pytest workflows (#166)
* Fix Python version in pre-commit and pytest workflows * Update locked duckdb version * Update locked matplotlib version
1 parent 79c79f8 commit 26625e4

File tree

3 files changed

+97
-74
lines changed

3 files changed

+97
-74
lines changed

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,12 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@v5
2424

25-
- name: Set up Python
26-
uses: actions/setup-python@v6
27-
with:
28-
python-version: ${{ matrix.python-version }}
29-
3025
- name: Install uv
3126
uses: astral-sh/setup-uv@v7
3227
with:
3328
version: "0.9.5"
3429
enable-cache: true
30+
python-version: ${{ matrix.python-version }}
3531

3632
- name: Install the project
3733
run: uv sync --locked --all-extras --dev

.github/workflows/pytest.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,12 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@v5
2424

25-
- name: Set up Python
26-
uses: actions/setup-python@v6
27-
with:
28-
python-version: ${{ matrix.python-version }}
29-
3025
- name: Install uv
3126
uses: astral-sh/setup-uv@v7
3227
with:
3328
version: "0.9.5"
3429
enable-cache: true
30+
python-version: ${{ matrix.python-version }}
3531

3632
- name: Install the project
3733
run: uv sync --locked --all-extras --dev

0 commit comments

Comments
 (0)