Skip to content

Commit

Permalink
drop python 3.6, since it's EOL
Browse files Browse the repository at this point in the history
  • Loading branch information
marph91 committed May 9, 2023
1 parent 1a5ff6a commit def13a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
matrix:
# Available versions:
# https://github.com/actions/runner-images/blob/main/images/linux/Ubuntu2004-Readme.md#python
python-version: ["3.6", "3.8", "3.11"]
python-version: ["3.7", "3.11"]
fail-fast: false
env:
SLOW_TESTS: 1
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,13 @@
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Typing :: Typed",
],
python_requires=">=3.6",
python_requires=">=3.7",
install_requires=["requests"],
)

0 comments on commit def13a1

Please sign in to comment.