Skip to content

Commit 1d590df

Browse files
committed
Fix CI
1 parent 21d9ba3 commit 1d590df

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
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==39.1.0
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

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ classifiers = [
2222
"Topic :: Software Development :: Libraries :: Python Modules",
2323
"Intended Audience :: Developers",
2424
"Intended Audience :: Information Technology",
25-
"Programming Language :: Python :: 3",
26-
"Programming Language :: Python :: 3.8",
2725
"Programming Language :: Python :: 3.9",
2826
"Programming Language :: Python :: 3.10",
2927
"Programming Language :: Python :: 3.11",
@@ -35,7 +33,7 @@ packages = [
3533
]
3634

3735
[tool.poetry.dependencies]
38-
python = "^3.8"
36+
python = "^3.9"
3937
requests = "^2.31.0"
4038
six = "^1.16.0"
4139

0 commit comments

Comments
 (0)