Skip to content

Commit 0e0e98f

Browse files
authored
Drop Python 3.6 support (#680)
1 parent 2ddf916 commit 0e0e98f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
needs: lint
6262
strategy:
6363
matrix:
64-
pyver: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11-dev']
64+
pyver: ['3.7', '3.8', '3.9', '3.10', '3.11-dev']
6565
no-extensions: ['', 'Y']
6666
os: [ubuntu, macos, windows]
6767
exclude:
@@ -70,7 +70,7 @@ jobs:
7070
- os: windows
7171
no-extensions: 'Y'
7272
include:
73-
- pyver: pypy3
73+
- pyver: pypy-3.8
7474
no-extensions: 'Y'
7575
os: ubuntu
7676
fail-fast: false

CHANGES/680.removal

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Dropped Python 3.6 support

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ def read(f):
6161
"Intended Audience :: Developers",
6262
"Programming Language :: Python",
6363
"Programming Language :: Python :: 3",
64-
"Programming Language :: Python :: 3.6",
6564
"Programming Language :: Python :: 3.7",
6665
"Programming Language :: Python :: 3.8",
6766
"Programming Language :: Python :: 3.9",
@@ -81,7 +80,7 @@ def read(f):
8180
},
8281
license="Apache 2",
8382
packages=["multidict"],
84-
python_requires=">=3.6",
83+
python_requires=">=3.7",
8584
include_package_data=True,
8685
exclude_package_data={"": ["*.c", "*.h"]},
8786
)

0 commit comments

Comments
 (0)