Skip to content

Commit

Permalink
⬆️ UPGRADE: Drop python 3.6, support 3.10 (#475)
Browse files Browse the repository at this point in the history
Python 3.6 end-of-life was 23 Dec 2021
  • Loading branch information
chrisjsewell committed Dec 28, 2021
1 parent fb67af6 commit 0846a1f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Expand Up @@ -24,7 +24,7 @@ jobs:

strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9"]
python-version: ["3.7", "3.8", "3.9", "3.10"]
sphinx: [">=4,<5"]
os: [ubuntu-latest]
include:
Expand Down
6 changes: 3 additions & 3 deletions setup.cfg
Expand Up @@ -16,10 +16,10 @@ classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
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 :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Software Development :: Libraries :: Python Modules
Expand All @@ -43,7 +43,7 @@ install_requires =
mdit-py-plugins~=0.3.0
pyyaml
sphinx>=3.1,<5
python_requires = >=3.6
python_requires = >=3.7
include_package_data = True
zip_safe = True

Expand Down Expand Up @@ -75,7 +75,7 @@ testing =
beautifulsoup4
coverage
docutils~=0.17.0 # this version changes some HTML tags
pytest>=3.6,<4
pytest>=6,<7
pytest-cov
pytest-regressions

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Expand Up @@ -16,7 +16,7 @@ envlist = py37-sphinx4
[testenv]
usedevelop = true

[testenv:py{36,37,38,39}-sphinx{3,4}]
[testenv:py{37,38,39,310}-sphinx{3,4}]
deps =
black
flake8
Expand Down

0 comments on commit 0846a1f

Please sign in to comment.