Skip to content

Commit 75302f4

Browse files
committed
dropped python 3.6 support because it is deprecated and so we can somewhat use | as type union
1 parent cc0ed0e commit 75302f4

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
timeout-minutes: 2
1212
strategy:
1313
matrix:
14-
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
14+
python-version: ['3.7', '3.8', '3.9', '3.10']
1515

1616
steps:
1717
- uses: actions/checkout@v2

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
tests_require=['pytest'],
3131
extras_require={
3232
'docs': [
33-
'six',
3433
'mock',
3534
'sphinx',
3635
'python-utils',

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
[tox]
2-
envlist = py36, py37, py38, py39, py310, pypy3, flake8, docs
2+
envlist = py37, py38, py39, py310, pypy3, flake8, docs
33
skip_missing_interpreters = True
44

55
[testenv]
66
basepython =
7-
py36: python3.6
87
py37: python3.7
98
py38: python3.8
109
py39: python3.9

0 commit comments

Comments
 (0)