Skip to content

Commit 081311f

Browse files
authored
Merge pull request #49 from repoze/tseaver-drop_py38_and_ci_artifacts
chore: drop support for Python 3.8 ci: remove use of artifact upload / download for coverage reporting
2 parents 493b464 + 9d54263 commit 081311f

File tree

4 files changed

+10
-28
lines changed

4 files changed

+10
-28
lines changed

.github/workflows/ci.yml

+6-24
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ jobs:
1414
strategy:
1515
matrix:
1616
python:
17-
- "3.7"
18-
- "3.8"
1917
- "3.9"
2018
- "3.10"
2119
- "3.11"
@@ -41,17 +39,9 @@ jobs:
4139
run: |
4240
tox -e py${{ matrix.python }}
4341
44-
- name: Upload coverage results
45-
uses: actions/upload-artifact@v2
46-
with:
47-
name: coverage-artifacts
48-
path: .coverage.py${{ matrix.python }}
49-
5042
report-coverage:
5143
name: cover
5244
runs-on: ubuntu-latest
53-
needs:
54-
- run-unittests
5545

5646
steps:
5747

@@ -61,20 +51,12 @@ jobs:
6151
- name: Setup Python
6252
uses: actions/setup-python@v5
6353
with:
64-
python-version: "3.10"
65-
66-
- name: Install coverage
67-
run: |
68-
python -m pip install --upgrade setuptools pip wheel
69-
python -m pip install coverage
54+
python-version: "3.9"
7055

71-
- name: Download coverage results
72-
uses: actions/download-artifact@v2
56+
- name: Setup Python
57+
uses: actions/setup-python@v5
7358
with:
74-
name: coverage-artifacts
75-
path: .coverage-results/
59+
python-version: "3.13"
7660

77-
- name: Report coverage results
78-
run: |
79-
coverage combine .coverage-results/.coverage*
80-
coverage report --show-missing --fail-under=100
61+
- run: pip install tox
62+
- run: tox -e py39,py313,cover

CHANGES.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ repoze.who Changelog
66

77
- Add support for Python 3.12 and 3.13.
88

9-
- Drop support for Python 3.7.
9+
- Drop support for Python 3.7 and 3.8.
1010

1111
- Require ``legacy-cgi`` on Python 3.13 or higher so ``WebOb`` works.
1212

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ def _read_file(filename):
3636
"Development Status :: 5 - Production/Stable",
3737
"Intended Audience :: Developers",
3838
"Programming Language :: Python :: 3",
39-
"Programming Language :: Python :: 3.8",
4039
"Programming Language :: Python :: 3.9",
4140
"Programming Language :: Python :: 3.10",
4241
"Programming Language :: Python :: 3.11",
@@ -49,6 +48,7 @@ def _read_file(filename):
4948
"Topic :: Internet :: WWW/HTTP :: WSGI",
5049
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
5150
],
51+
python_requires=">=3.9",
5252
keywords='web application server wsgi zope',
5353
author="Agendaless Consulting",
5454
author_email="[email protected]",

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py38,py39,py310,py311,py312,py313,pypy3,cover,docs
3+
py39,py310,py311,py312,py313,pypy3,cover,docs
44

55
[testenv]
66
commands =
@@ -16,7 +16,7 @@ setenv =
1616
[testenv:cover]
1717
skip_install = true
1818
basepython =
19-
python3.10
19+
python3.12
2020
commands =
2121
coverage combine
2222
coverage report --fail-under=100 --show-missing

0 commit comments

Comments
 (0)