Skip to content

Commit 717f12e

Browse files
authored
Support python 3.12 and 3.13, bump version
1 parent e63bde8 commit 717f12e

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/unittests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
os: [ubuntu-latest, macos-latest, windows-latest]
10-
python-version: [3.8, 3.9, "3.10", "3.11"]
10+
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"]
1111
steps:
1212
- uses: actions/checkout@v4
1313
with:

.github/workflows/unittests_codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
os: [ubuntu-latest, macos-latest, windows-latest]
20-
python-version: [3.8, 3.9, "3.10", "3.11"]
20+
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"]
2121
steps:
2222
- uses: actions/checkout@v4
2323
with:

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="mkdocs-git-authors-plugin",
8-
version="0.9.0",
8+
version="0.9.1",
99
description="Mkdocs plugin to display git authors of a page",
1010
long_description=long_description,
1111
long_description_content_type="text/markdown",
@@ -23,6 +23,8 @@
2323
"Programming Language :: Python :: 3.9",
2424
"Programming Language :: Python :: 3.10",
2525
"Programming Language :: Python :: 3.11",
26+
"Programming Language :: Python :: 3.12",
27+
"Programming Language :: Python :: 3.13",
2628
"Programming Language :: Python :: 3 :: Only",
2729
"License :: OSI Approved :: MIT License",
2830
"Topic :: Documentation",

0 commit comments

Comments
 (0)