Skip to content

Commit fc7ca7e

Browse files
committed
Drop support for EOL Python 3.6
Version 3.6 reached its end-of-life phase on 2021-12-23. According to PEP 494 - https://peps.python.org/pep-0494/
1 parent d8c33fa commit fc7ca7e

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

convcolors/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# coding: utf8
2-
31
import math
42

53

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
testpaths = tests
33

44
[tox:tox]
5-
envlist = py36,py37,py38
5+
envlist = py37,py38
66

77
[testenv]
88
deps = pytest

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,14 @@
1717
"License :: OSI Approved :: MIT License",
1818
"Natural Language :: English",
1919
"Programming Language :: Python :: 3 :: Only",
20-
"Programming Language :: Python :: 3.6",
2120
"Programming Language :: Python :: 3.7",
2221
"Programming Language :: Python :: 3.8",
2322
"Programming Language :: Python :: 3",
2423
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
2524
"Topic :: Software Development :: Libraries :: Python Modules",
2625
"Topic :: Utilities",
2726
],
28-
python_requires=">=3.6",
27+
python_requires=">=3.7",
2928
keywords="convert colors",
3029
packages=["convcolors"],
3130
extras_require={

0 commit comments

Comments
 (0)