Skip to content

Commit 7fbb232

Browse files
authored
drop support for python 3.7
1 parent a045cab commit 7fbb232

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
strategy:
77
matrix:
88
os: [ubuntu-latest, macos-latest, windows-latest]
9-
python-version: [3.7, 3.8, 3.9, "3.10"]
9+
python-version: [3.8, 3.9, "3.10", "3.11"]
1010
steps:
1111
- uses: actions/checkout@master
1212

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="mkdocs-table-reader-plugin",
8-
version="2.0.3",
8+
version="2.1.0",
99
description="MkDocs plugin to directly insert tables from files into markdown.",
1010
long_description=long_description,
1111
long_description_content_type="text/markdown",
@@ -19,10 +19,10 @@
1919
"Operating System :: OS Independent",
2020
"Programming Language :: Python",
2121
"Programming Language :: Python :: 3",
22-
"Programming Language :: Python :: 3.7",
2322
"Programming Language :: Python :: 3.8",
2423
"Programming Language :: Python :: 3.9",
2524
"Programming Language :: Python :: 3.10",
25+
"Programming Language :: Python :: 3.11",
2626
"License :: OSI Approved :: MIT License",
2727
],
2828
install_requires=["mkdocs>=1.0", "pandas>=1.1", "tabulate>=0.8.7", "PyYAML>=5.4.1"],

0 commit comments

Comments
 (0)