Skip to content

Commit 277b8d0

Browse files
authored
Merge pull request #32 from mlegner/remove-3.6
drop Python 3.6 support
2 parents 803365a + 0d1a885 commit 277b8d0

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,14 @@ def read(fname):
2424
long_description=read("README.rst") + read("HISTORY.rst"),
2525
long_description_content_type="text/x-rst",
2626
py_modules=["pytest_icdiff"],
27-
python_requires=">=3.6",
27+
python_requires=">=3.7",
2828
install_requires=["pytest", "icdiff", "pprintpp"],
2929
classifiers=[
3030
"Development Status :: 4 - Beta",
3131
"Framework :: Pytest",
3232
"Intended Audience :: Developers",
3333
"Topic :: Software Development :: Testing",
3434
"Programming Language :: Python",
35-
"Programming Language :: Python :: 3.6",
3635
"Programming Language :: Python :: 3.7",
3736
"Programming Language :: Python :: 3.8",
3837
"Programming Language :: Python :: 3.9",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# For more information about tox, see https://tox.readthedocs.io/en/latest/
22
[tox]
3-
envlist = py36,py37,py38,py39,py310,py311,flake8
3+
envlist = py37,py38,py39,py310,py311,flake8
44

55
[testenv]
66
deps = pytest>=3.0

0 commit comments

Comments
 (0)