From 215b6ea5fbebe6182a149a4ff37d46bb6c99d820 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Pazderka?= Date: Wed, 17 Apr 2024 09:16:34 +0200 Subject: [PATCH] Drop support for python 3.7 --- .github/workflows/python-test.yml | 3 ++- setup.py | 2 +- tox.ini | 2 -- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index 35a9d46..2a7e2fd 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -15,7 +15,7 @@ jobs: strategy: max-parallel: 4 matrix: - python: [3.7, 3.8, 3.9, "3.10", "3.11"] + python: [3.8, 3.9, "3.10", "3.11"] steps: - uses: actions/checkout@v3 @@ -27,6 +27,7 @@ jobs: run: | python -m pip install --upgrade pip pip install tox wheel + sudo apt-get update sudo apt-get install libxmlsec1-dev - name: Run tests run: | diff --git a/setup.py b/setup.py index 9eb10d1..d6480ca 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ description='Python application for communication with Czech NIA.', long_description=open('README.md').read(), long_description_content_type='text/markdown', - python_requires='~=3.7', + python_requires='~=3.8', packages=find_packages(), zip_safe=False, include_package_data=True, diff --git a/tox.ini b/tox.ini index f22a56b..ae892ee 100644 --- a/tox.ini +++ b/tox.ini @@ -2,7 +2,6 @@ skip_missing_interpreters = true envlist = quality - py37 py38 py39 py310 @@ -19,7 +18,6 @@ commands = [testenv:compute-coverage] depends = - py37 py38 py39 py310