diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a7ad716..3bbedb6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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: @@ -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 diff --git a/setup.py b/setup.py index 1417b52..3fba83a 100644 --- a/setup.py +++ b/setup.py @@ -17,11 +17,10 @@ setup( 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",