Skip to content

Commit a6deafb

Browse files
authored
Drop Python 3.6 support (#331)
1 parent 0b53192 commit a6deafb

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,9 @@ jobs:
4343
needs: [lint]
4444
strategy:
4545
matrix:
46-
python-version: ['3.6', '3.7', '3.8', '3.9.6', '3.10']
46+
python-version: ['3.7', '3.8', '3.9.6', '3.10']
4747
os: [ubuntu, macos, windows]
4848
exclude:
49-
- python-version: 3.7
50-
os: macos
5149
- python-version: 3.8
5250
os: macos
5351
- python-version: 3.9

CHANGES/331.removal

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Dropped Python 3.6 support, the minimal supported aiohttp is 3.8.1

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,11 @@ module="aiohttp_remotes"
88
author="Andrew Svetlov"
99
author-email="[email protected]"
1010
home-page="https://github.com/aio-libs/aiohttp-remotes"
11-
requires=["aiohttp >= 3.6.3", "typing-extensions >= 3.7.4"]
11+
requires=["aiohttp >= 3.8.1", "typing-extensions >= 3.7.4"]
1212
requires-python=">=3.6"
1313
description-file="README.rst"
1414
classifiers=["License :: OSI Approved :: MIT License",
1515
"Programming Language :: Python :: 3",
16-
"Programming Language :: Python :: 3.6",
1716
"Programming Language :: Python :: 3.7",
1817
"Programming Language :: Python :: 3.8",
1918
"Programming Language :: Python :: 3.9",

0 commit comments

Comments
 (0)