Skip to content

Commit 56d5621

Browse files
pradyunsgcholdgraf
authored andcommitted
Drop Python 3.6 support
The interpreter goes EoL in ~1 month, and it is not supported by `sphinx-theme-builder`.
1 parent 41764f5 commit 56d5621

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
runs-on: ubuntu-latest
6060
strategy:
6161
matrix:
62-
python-version: [3.6, 3.7, 3.8, 3.9]
62+
python-version: [3.7, 3.8, 3.9]
6363
include:
6464
- python-version: 3.9
6565
dev: true

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
from setuptools import setup
77

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

@@ -54,7 +53,7 @@ def find_version(*file_paths):
5453
"coverage": ["pytest-cov", "codecov", *tests_require],
5554
"dev": ["pyyaml", "pre-commit", "nox"],
5655
},
57-
python_requires=">=3.5",
56+
python_requires=">=3.7",
5857
classifiers=[
5958
"Development Status :: 4 - Beta",
6059
"Programming Language :: Python :: 3",

0 commit comments

Comments
 (0)