Skip to content

Commit

Permalink
Drop Python 3.6 support (#680)
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov authored Jan 22, 2022
1 parent 2ddf916 commit 0e0e98f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
needs: lint
strategy:
matrix:
pyver: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11-dev']
pyver: ['3.7', '3.8', '3.9', '3.10', '3.11-dev']
no-extensions: ['', 'Y']
os: [ubuntu, macos, windows]
exclude:
Expand All @@ -70,7 +70,7 @@ jobs:
- os: windows
no-extensions: 'Y'
include:
- pyver: pypy3
- pyver: pypy-3.8
no-extensions: 'Y'
os: ubuntu
fail-fast: false
Expand Down
1 change: 1 addition & 0 deletions CHANGES/680.removal
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Dropped Python 3.6 support
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ def read(f):
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand All @@ -81,7 +80,7 @@ def read(f):
},
license="Apache 2",
packages=["multidict"],
python_requires=">=3.6",
python_requires=">=3.7",
include_package_data=True,
exclude_package_data={"": ["*.c", "*.h"]},
)
Expand Down

0 comments on commit 0e0e98f

Please sign in to comment.