Skip to content

Commit 5ff963b

Browse files
committed
Drop Python 3.7 from testing, add 3.12, update action versions
1 parent f400f01 commit 5ff963b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
deploy:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v4
1212
- name: Set up Python 3.8
13-
uses: actions/setup-python@v2
13+
uses: actions/setup-python@v5
1414
with:
1515
python-version: 3.8
1616
- name: Install build dependencies

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
strategy:
1212
matrix:
1313
os: [ubuntu-latest]
14-
python-version: [3.7, 3.8, 3.9, '3.10', '3.11']
14+
python-version: [3.8, 3.9, '3.10', '3.11', '3.12']
1515
runs-on: ${{ matrix.os }}
1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v4
1818
- name: Set up Python ${{ matrix.python-version }}
19-
uses: actions/setup-python@v2
19+
uses: actions/setup-python@v5
2020
with:
2121
python-version: ${{ matrix.python-version }}
2222
- name: Install test dependencies

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
On the fly conversion of Python docstrings to markdown
88

9-
- Python 3.6+ (tested on 3.7 up to 3.11)
9+
- Python 3.6+ (tested on 3.8 up to 3.12)
1010
- can recognise reStructuredText and convert multiple of its features to Markdown
1111
- since v0.13 includes initial support for Google-formatted docstrings
1212

0 commit comments

Comments
 (0)