Skip to content

Commit

Permalink
Drop Python 3.6 support
Browse files Browse the repository at this point in the history
The interpreter goes EoL in ~1 month, and it is not supported by
`sphinx-theme-builder`.
  • Loading branch information
pradyunsg authored and choldgraf committed Dec 3, 2021
1 parent 41764f5 commit 56d5621
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 @@ -59,7 +59,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9]
include:
- python-version: 3.9
dev: true
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

from setuptools import setup


# from https://packaging.python.org/guides/single-sourcing-package-version/
HERE = os.path.abspath(os.path.dirname(__file__))

Expand Down Expand Up @@ -54,7 +53,7 @@ def find_version(*file_paths):
"coverage": ["pytest-cov", "codecov", *tests_require],
"dev": ["pyyaml", "pre-commit", "nox"],
},
python_requires=">=3.5",
python_requires=">=3.7",
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
Expand Down

0 comments on commit 56d5621

Please sign in to comment.