Skip to content

Commit 174e093

Browse files
committed
Remove support for python 3.8
It was eol October of 2024 and does not have support for removeprefix, which we now use.
1 parent 9b2e208 commit 174e093

File tree

4 files changed

+2
-10
lines changed

4 files changed

+2
-10
lines changed

.github/workflows/tests.yaml

-4
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ jobs:
1111
include:
1212
- python: 3.x
1313
toxenv: pep8
14-
- python: 3.8
15-
toxenv: py38
1614
- python: 3.9
1715
toxenv: py39
1816
- python: "3.10"
@@ -25,8 +23,6 @@ jobs:
2523
toxenv: py313
2624
- python: pypy-3.8
2725
toxenv: pypy3
28-
- python: 3.8
29-
toxenv: py38-pytest
3026
- python: 3.9
3127
toxenv: py39-pytest
3228
- python: "3.10"

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ looks like this::
2020
See the docs_ for more details on the many features and formats for
2121
setting request headers and bodies and evaluating responses.
2222

23-
Gabbi is tested with Python 3.8, 3.9, 3.10, 3.11, 3.12, 3.13 and pypy3.
23+
Gabbi is tested with Python 3.9, 3.10, 3.11, 3.12, 3.13 and pypy3.
2424

2525
Tests can be run using `unittest`_ style test runners, `pytest`_
2626
or from the command line with a `gabbi-run`_ script.

setup.cfg

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ classifier =
1515
Operating System :: POSIX
1616
Programming Language :: Python
1717
Programming Language :: Python :: 3
18-
Programming Language :: Python :: 3.8
1918
Programming Language :: Python :: 3.9
2019
Programming Language :: Python :: 3.10
2120
Programming Language :: Python :: 3.11

tox.ini

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
minversion = 3.1.1
33
skipsdist = True
4-
envlist = pep8,py38,py39,py310,py311,py312,py313,pypy3,pep8,limit,failskip,docs,py313-prefix,py313-limit,py313-verbosity,py313-failskip,py36-pytest,py38-pytest,py39-pytest,py310-pytest,py311-pytest,py312-pytest,py313-pytest
4+
envlist = pep8,py39,py310,py311,py312,py313,pypy3,pep8,limit,failskip,docs,py313-prefix,py313-limit,py313-verbosity,py313-failskip,py36-pytest,py39-pytest,py310-pytest,py311-pytest,py312-pytest,py313-pytest
55

66
[testenv]
77
deps = -r{toxinidir}/requirements.txt
@@ -22,9 +22,6 @@ commands = {posargs}
2222
[testenv:py36-pytest]
2323
commands = py.test gabbi
2424

25-
[testenv:py38-pytest]
26-
commands = py.test gabbi
27-
2825
[testenv:py39-pytest]
2926
commands = py.test gabbi
3027

0 commit comments

Comments
 (0)