Skip to content

Commit 2036f91

Browse files
authored
Merge pull request #421 from grafuls/development
fix: removed support for py3.6
2 parents 2efb300 + c94cfa1 commit 2036f91

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/tox.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-20.04
1414
strategy:
1515
matrix:
16-
python: ["3.6", "3.7", "3.8", "3.9", "3.10"]
16+
python: ["3.7", "3.8", "3.9", "3.10"]
1717

1818
steps:
1919
- uses: actions/checkout@v2

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ classifiers =
1515
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
1616
Operating System :: OS Independent
1717
Programming Language :: Python :: 3
18-
Programming Language :: Python :: 3.6
1918
Programming Language :: Python :: 3.7
2019
Programming Language :: Python :: 3.8
2120
Programming Language :: Python :: 3.9
@@ -28,7 +27,7 @@ project_urls =
2827

2928
[options]
3029
packages = find:
31-
python_requires = >=3.6
30+
python_requires = >=3.7
3231
install_requires =
3332
pyyaml>=3.10
3433
aiohttp>=3.7.4

0 commit comments

Comments
 (0)