Skip to content

Commit

Permalink
chore: drop support for python 3.6
Browse files Browse the repository at this point in the history
It's been EOL since 23 Dec 2021 and is now no longer passing tests.

If someone does still use this library with python 3.6, they will need
to pin the `bleach` dependency to 4.1.0 and `readme_renderer` 34.0

Signed-off-by: Mike Fiedler <miketheman@gmail.com>
  • Loading branch information
miketheman committed Apr 19, 2022
1 parent 3694166 commit adaadc3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["pypy3", "3.6", "3.7", "3.8", "3.9", "3.10"]
python-version: ["pypy3", "3.7", "3.8", "3.9", "3.10"]
steps:
- name: Check out repository
uses: actions/checkout@v2
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
"Programming Language :: Python",
"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",
Expand All @@ -60,5 +59,5 @@
include_package_data=True,
extras_require={"md": "cmarkgfm>=0.8.0"},
packages=setuptools.find_packages(exclude=["tests", "tests.*"]),
python_requires=">=3.6",
python_requires=">=3.7",
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py36,py37,py38,py39,py310,pep8,packaging,noextra,mypy
envlist = py37,py38,py39,py310,pep8,packaging,noextra,mypy
isolated_build = True

[testenv]
Expand Down

0 comments on commit adaadc3

Please sign in to comment.