Skip to content

Commit 237952c

Browse files
committed
Drop support for Python 3.6
1 parent 4a20182 commit 237952c

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.github/workflows/validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ubuntu-20.04
66
strategy:
77
matrix:
8-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
8+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
99
steps:
1010
- uses: actions/checkout@v3
1111
- uses: actions/setup-python@v4

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ def read(fname):
2929
py_modules=[
3030
os.path.splitext(os.path.basename(path))[0] for path in glob.glob("src/*.py")
3131
],
32-
python_requires=">=3.6",
32+
python_requires=">=3.7",
3333
setup_requires=["setuptools-scm>=3.5"],
3434
install_requires=[
3535
"attrs>=19.0",
3636
"filelock>=3.0",
37-
'pytest>=4.6; python_version>="3.6" and python_version<"3.10"',
37+
'pytest>=4.6; python_version<"3.10"',
3838
'pytest>=6.2; python_version>="3.10"',
3939
'mypy>=0.500; python_version<"3.8"',
4040
'mypy>=0.700; python_version>="3.8" and python_version<"3.9"',
@@ -48,7 +48,6 @@ def read(fname):
4848
"Topic :: Software Development :: Testing",
4949
"Programming Language :: Python",
5050
"Programming Language :: Python :: 3",
51-
"Programming Language :: Python :: 3.6",
5251
"Programming Language :: Python :: 3.7",
5352
"Programming Language :: Python :: 3.8",
5453
"Programming Language :: Python :: 3.9",

tox.ini

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
minversion = 3.20
44
isolated_build = true
55
envlist =
6-
py36-pytest{4.6, 5.0, 5.x, 6.0, 6.x, 7.0, 7.x}-mypy{0.50, 0.5x, 0.60, 0.6x, 0.70, 0.7x, 0.80, 0.8x, 0.90, 0.9x}
76
py37-pytest{4.6, 5.0, 5.x, 6.0, 6.x, 7.0, 7.x}-mypy{0.50, 0.5x, 0.60, 0.6x, 0.70, 0.7x, 0.80, 0.8x, 0.90, 0.9x}
87
py38-pytest{4.6, 5.0, 5.x, 6.0, 6.x, 7.0, 7.x}-mypy{0.71, 0.7x, 0.80, 0.8x, 0.90, 0.9x}
98
py39-pytest{4.6, 5.0, 5.x, 6.0, 6.x, 7.0, 7.x}-mypy{0.78, 0.7x, 0.80, 0.8x, 0.90, 0.9x}
@@ -14,7 +13,6 @@ envlist =
1413

1514
[gh-actions]
1615
python =
17-
3.6: py36-pytest{4.6, 5.0, 5.x, 6.0, 6.x, 7.0, 7.x}-mypy{0.50, 0.5x, 0.60, 0.6x, 0.70, 0.7x, 0.80, 0.8x, 0.90, 0.9x}
1816
3.7: py37-pytest{4.6, 5.0, 5.x, 6.0, 6.x, 7.0, 7.x}-mypy{0.50, 0.5x, 0.60, 0.6x, 0.70, 0.7x, 0.80, 0.8x, 0.90, 0.9x}
1917
3.8: py38-pytest{4.6, 5.0, 5.x, 6.0, 6.x, 7.0, 7.x}-mypy{0.71, 0.7x, 0.80, 0.8x, 0.90, 0.9x}, publish, static
2018
3.9: py39-pytest{4.6, 5.0, 5.x, 6.0, 6.x, 7.0, 7.x}-mypy{0.78, 0.7x, 0.80, 0.8x, 0.90, 0.9x}

0 commit comments

Comments
 (0)