Skip to content

Commit

Permalink
Merge pull request #1018 from legobeat/drop-python-3.8
Browse files Browse the repository at this point in the history
Minimum Python version 3.9
  • Loading branch information
p12tic committed Aug 3, 2024
2 parents fc90f60 + 5610949 commit b7514a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
python-version: [ '3.9', '3.10', '3.11', '3.12' ]

runs-on: ubuntu-latest
container:
Expand All @@ -22,7 +22,7 @@ jobs:
- name: Install dependencies
run: |
set -e
apt update && apt install -y podman
apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y podman
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r test-requirements.txt
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,10 @@
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
Expand Down

0 comments on commit b7514a0

Please sign in to comment.