Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b3e4dd0

Browse files
authored
drop py36 in more places (#50)
1 parent 0a0848b commit b3e4dd0

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.black]
2-
target_version = ['py36', 'py37', 'py38', 'py39']
2+
target_version = ['py37', 'py38', 'py39', 'py310', 'py311']
33
include = '\.pyi?$'
44

55
exclude = '''

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,10 @@
2222
"License :: OSI Approved :: MIT License",
2323
"Operating System :: OS Independent",
2424
"Programming Language :: Python",
25-
"Programming Language :: Python :: 3.6",
2625
"Programming Language :: Python :: 3.7",
2726
"Programming Language :: Python :: 3.8",
2827
"Programming Language :: Python :: 3.9",
2928
"Topic :: Software Development",
3029
],
31-
python_requires=">=3.6",
30+
python_requires=">=3.7",
3231
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
minversion=2.3.1
3-
envlist = py36,py37,py38,py39,py310,py311,black,pyanalyze
3+
envlist = py37,py38,py39,py310,py311,black,pyanalyze
44

55
[testenv]
66
deps =

0 commit comments

Comments
 (0)