Skip to content

Commit f50afab

Browse files
committed
restored support python 3.8
1 parent 74386c1 commit f50afab

File tree

5 files changed

+5
-12
lines changed

5 files changed

+5
-12
lines changed

.github/workflows/tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ jobs:
5555
env:
5656
PYTEST_ADDOPTS: "-vv --durations=20"
5757
DIFF_AGAINST: HEAD
58-
5958
# - name: Upload coverage to Codecov
6059
# uses: codecov/codecov-action@v5
6160
# if: ${{ success() && matrix.python-version == 3.12 }}

CHANGELOG

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
2.0
22
---
3-
* add support python 3.9..3.13
3+
* add support python 3.8..3.13
44
* add typing
55

66

README.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ versions](https://img.shields.io/pypi/pyversions/pytest-echo.svg)](https://pypi.
88
[![Coverage](https://codecov.io/gh/pytest-dev/pytest-echo/branch/develop/graph/badge.svg)](https://codecov.io/gh/pytest-dev/pytest-echo)
99
[![Documentation](https://readthedocs.org/projects/pytest-echo/badge/?version=latest)](https://pytest-echo.readthedocs.io/en/latest/)
1010

11-
12-
1311
Print environment variables, package version and generic attributes,
1412
as they are at the beginning of the test.
1513

@@ -27,8 +25,6 @@ install via::
2725

2826
## Dump environment variables
2927

30-
31-
3228
$ pytest --echo-env=HOME
3329
============================= test session starts =========================
3430
platform linux2 -- Python 2.7.4 -- py-1.4.22 -- pytest-2.6.0 -- /bin/python
@@ -38,16 +34,14 @@ install via::
3834

3935
## Dump package version
4036

41-
42-
4337
$ pytest --echo-version=pytest_echo
4438
============================= test session starts =========================
4539
platform linux2 -- Python 2.7.4 -- py-1.4.22 -- pytest-2.6.0 -- /bin/python
4640
Package version:
4741
pytest_echo: 0.1
4842
plugins: echo, pydev, cov, cache, django
4943

50-
> [!NOTE]
44+
> [!NOTE]
5145
> The first attempt to retrieve the version is done via setuptools
5246
> if it fails, the module is imported (`__import__(package)`) to retrieve the version reading
5347
> `get_version`, `__version__`, `VERSION`, `version` so any module
@@ -111,12 +105,10 @@ Example of use in a django project:
111105
Starting from version 1.5, is possible to glob packages version and environment variables,
112106
as:
113107

114-
115108
$ pytest --echo-version=pytest-* --echo-env=VIRTUAL*
116109

117110
or
118111

119-
120112
[pytest]
121113
addopts = -vvv
122114
--echo-env VIRTUAL*

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,15 @@ license.file = "LICENSE"
1717
maintainers = [
1818
{ name = "Stefano Apostolico", email = "[email protected]" },
1919
]
20-
requires-python = ">=3.9"
20+
requires-python = ">=3.8"
2121
classifiers = [
2222
"Development Status :: 5 - Production/Stable",
2323
"Intended Audience :: Developers",
2424
"License :: OSI Approved :: MIT License",
2525
"Operating System :: OS Independent",
2626
"Programming Language :: Python",
2727
"Programming Language :: Python :: 3 :: Only",
28+
"Programming Language :: Python :: 3.8",
2829
"Programming Language :: Python :: 3.9",
2930
"Programming Language :: Python :: 3.10",
3031
"Programming Language :: Python :: 3.11",

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ env_list =
99
3.11
1010
3.10
1111
3.9
12+
3.8
1213
type
1314
pkg_meta
1415
skip_missing_interpreters = true

0 commit comments

Comments
 (0)