Skip to content

Commit

Permalink
Drop explicit support for python 3.6 as it is end of life, add 3.9 an…
Browse files Browse the repository at this point in the history
…d 3.10
  • Loading branch information
timvink committed Dec 24, 2021
1 parent 601ae07 commit 31dbfe5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.6, 3.7, 3.8]
python-version: [3.7, 3.8, 3.9, "3.10"]
steps:
- uses: actions/checkout@master
- name: Setup Python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unittests_codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.6, 3.7, 3.8]
python-version: [3.7, 3.8, 3.9, "3.10"]
steps:
- uses: actions/checkout@master
- name: Setup Python ${{ matrix.python-version }}
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="mkdocs-print-site-plugin",
version="2.2",
version="2.2.1",
description="MkDocs plugin that combines all pages into one, allowing for easy export to PDF and standalone HTML.",
long_description=long_description,
long_description_content_type="text/markdown",
Expand All @@ -25,9 +25,10 @@
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"License :: OSI Approved :: MIT License",
"Topic :: Documentation",
"Topic :: Text Processing",
Expand Down

0 comments on commit 31dbfe5

Please sign in to comment.