Skip to content

Commit

Permalink
Remove support for Python 3.6
Browse files Browse the repository at this point in the history
The ec2-metadata Python library has removed support for Python 3.6 as
of version 2.7.0.
  • Loading branch information
jsf9k committed Jan 18, 2022
1 parent 0b9b581 commit 9cad107
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ jobs:
fail-fast: false
matrix:
python-version:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
Expand Down Expand Up @@ -199,7 +198,6 @@ jobs:
fail-fast: false
matrix:
python-version:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,11 @@ def get_version(version_file):
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
python_requires=">=3.6",
python_requires=">=3.7",
# What does your project relate to?
keywords="aws, guacamole, vpc",
packages=find_packages(where="src"),
Expand Down

0 comments on commit 9cad107

Please sign in to comment.