Skip to content

Commit b7514a0

Browse files
authored
Merge pull request #1018 from legobeat/drop-python-3.8
Minimum Python version 3.9
2 parents fc90f60 + 5610949 commit b7514a0

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
12+
python-version: [ '3.9', '3.10', '3.11', '3.12' ]
1313

1414
runs-on: ubuntu-latest
1515
container:
@@ -22,7 +22,7 @@ jobs:
2222
- name: Install dependencies
2323
run: |
2424
set -e
25-
apt update && apt install -y podman
25+
apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y podman
2626
python -m pip install --upgrade pip
2727
pip install -r requirements.txt
2828
pip install -r test-requirements.txt

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,10 @@
1717
classifiers=[
1818
"Programming Language :: Python",
1919
"Programming Language :: Python :: 3",
20-
"Programming Language :: Python :: 3.7",
21-
"Programming Language :: Python :: 3.8",
2220
"Programming Language :: Python :: 3.9",
2321
"Programming Language :: Python :: 3.10",
2422
"Programming Language :: Python :: 3.11",
23+
"Programming Language :: Python :: 3.12",
2524
"Intended Audience :: Developers",
2625
"Operating System :: OS Independent",
2726
"Development Status :: 3 - Alpha",

0 commit comments

Comments
 (0)