Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

⬆️ UPGRADE: Drop python 3.6, support 3.10 #475

Merged
merged 1 commit into from Dec 28, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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