Skip to content

Commit

Permalink
Merge pull request #53 from release-engineering/nopy38
Browse files Browse the repository at this point in the history
Drop support for Python 3.8
  • Loading branch information
JAVGan authored Oct 10, 2024
2 parents f7bc1ed + 663a9dc commit 0d560ba
Show file tree
Hide file tree
Showing 7 changed files with 392 additions and 416 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pip-compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.8"
python-version: "3.9"

- name: Install system dependencies
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tox-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.9
- name: Install Tox
run: pip install tox 'virtualenv<20.21.1'
- name: Run Linting
Expand All @@ -42,7 +42,7 @@ jobs:
strategy:
matrix:
# https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.9
- name: Install Tox
run: pip install tox
- name: Run Tox
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.9
- name: Install Tox
run: pip install tox 'virtualenv<20.21.1'
- name: Run Tox
Expand Down
41 changes: 0 additions & 41 deletions pip-compile.yml

This file was deleted.

535 changes: 269 additions & 266 deletions requirements-test.txt

Large diffs are not rendered by default.

217 changes: 116 additions & 101 deletions requirements.txt

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
include_package_data=True,
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = pip-compile, docs, lint, mypy, security, py38, py39, py310, py311, py312
envlist = pip-compile, docs, lint, mypy, security, py39, py310, py311, py312

[testenv]
envdir = {toxworkdir}/shared-environment
Expand All @@ -13,7 +13,7 @@ commands=
--cov-report xml --cov-report html {posargs}

[testenv:pip-compile]
basepython = python3.8
basepython = python3.9
skip_install = true
deps = pip-tools
commands =
Expand Down

0 comments on commit 0d560ba

Please sign in to comment.