Skip to content

Commit 7b2bcc0

Browse files
seifertmTinche
authored andcommitted
feat!: Drop support for Python 3.6.
CPython 3.6 reached end-of-life on 2021-12-23 [1]. Future releases of pytest will no longer support Python 3.6 [2]. [1] https://www.python.org/dev/peps/pep-0494/ [2] pytest-dev/pytest#9437 Signed-off-by: Michael Seifert <[email protected]>
1 parent f56021d commit 7b2bcc0

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

.github/workflows/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
name: "Python ${{ matrix.python-version }}"
1414
runs-on: "ubuntu-latest"
1515
env:
16-
USING_COVERAGE: "3.6,3.7,3.8,3.9,3.10"
16+
USING_COVERAGE: "3.7,3.8,3.9,3.10"
1717

1818
strategy:
1919
matrix:
20-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
20+
python-version: ["3.7", "3.8", "3.9", "3.10"]
2121

2222
steps:
2323
- uses: "actions/checkout@v2"

README.rst

+1
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@ Changelog
174174
0.17.0 (UNRELEASED)
175175
~~~~~~~~~~~~~~~~~~~
176176
- `pytest-asyncio` no longer alters existing event loop policies. `#168 <https://github.com/pytest-dev/pytest-asyncio/issues/168>`_, `#188 <https://github.com/pytest-dev/pytest-asyncio/issues/168>`_
177+
- Drop support for Python 3.6
177178

178179
0.16.0 (2021-10-16)
179180
~~~~~~~~~~~~~~~~~~~

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,14 @@ def find_version():
3333
"Development Status :: 4 - Beta",
3434
"Intended Audience :: Developers",
3535
"License :: OSI Approved :: Apache Software License",
36-
"Programming Language :: Python :: 3.6",
3736
"Programming Language :: Python :: 3.7",
3837
"Programming Language :: Python :: 3.8",
3938
"Programming Language :: Python :: 3.9",
4039
"Programming Language :: Python :: 3.10",
4140
"Topic :: Software Development :: Testing",
4241
"Framework :: Pytest",
4342
],
44-
python_requires=">= 3.6",
43+
python_requires=">= 3.7",
4544
install_requires=["pytest >= 5.4.0"],
4645
extras_require={
4746
"testing": [

tox.ini

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
minversion = 3.14.0
3-
envlist = py36, py37, py38, py39, py310, lint
3+
envlist = py37, py38, py39, py310, lint
44
skip_missing_interpreters = true
55

66
[testenv]
@@ -26,7 +26,6 @@ commands =
2626

2727
[gh-actions]
2828
python =
29-
3.6: py36
3029
3.7: py37
3130
3.8: py38
3231
3.9: py39, lint

0 commit comments

Comments
 (0)