Skip to content

Commit 74413b5

Browse files
committed
Fix CI
1 parent 21d9ba3 commit 74413b5

File tree

3 files changed

+166
-129
lines changed

3 files changed

+166
-129
lines changed

.github/workflows/ci.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,15 @@ on:
55
branches:
66
- main
77
pull_request:
8+
workflow_dispatch:
89

910
jobs:
1011
build:
1112
runs-on: ubuntu-latest
1213
strategy:
1314
fail-fast: false
1415
matrix:
15-
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
16+
python-version: [3.9, "3.10", "3.11", "3.12"]
1617

1718
steps:
1819
- uses: actions/checkout@v4
@@ -21,7 +22,9 @@ jobs:
2122
python-version: ${{ matrix.python-version }}
2223
- run: |
2324
python -m pip install --upgrade pip
24-
pipx install poetry==1.7.0
25+
pip install setuptools
26+
pipx install poetry==1.8.0
2527
- run: poetry install
28+
- run: poetry add --group dev setuptools
2629
- run: poetry run pylama
2730
- run: poetry run py.test

0 commit comments

Comments
 (0)