Skip to content

Commit

Permalink
Merge pull request #41 from CZ-NIC/drop-py37
Browse files Browse the repository at this point in the history
Drop support for python 3.7
  • Loading branch information
tpazderka authored Apr 17, 2024
2 parents 455f6b2 + 215b6ea commit bb4e43b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 0 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
skip_missing_interpreters = true
envlist =
quality
py37
py38
py39
py310
Expand All @@ -19,7 +18,6 @@ commands =

[testenv:compute-coverage]
depends =
py37
py38
py39
py310
Expand Down

0 comments on commit bb4e43b

Please sign in to comment.