Drop Python 3.6 support

This commit is contained in:
c-bata
2022-10-25 13:09:19 +09:00
parent 2836d67e2a
commit c0edf6d3ed
2 changed files with 2 additions and 7 deletions
+2 -2
View File
@@ -9,7 +9,7 @@ readme = "README.md"
authors = [
{ name = "Masashi Shibata", "email" = "mshibata@preferred.jp" }
]
requires-python = ">=3.6"
requires-python = ">=3.7"
license = {text = "MIT License"}
classifiers = [
"Development Status :: 3 - Alpha",
@@ -17,10 +17,10 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
"Intended Audience :: Science/Research",
]
-5
View File
@@ -1,6 +1,5 @@
[tox]
envlist =
py36
py37
py38
py39
@@ -9,10 +8,6 @@ envlist =
isort
mypy
[testenv:py36]
basepython = python3.6
commands = python -m unittest {posargs}
[testenv:py37]
basepython = python3.7
commands = python -m unittest {posargs}