Skip to content

Commit c399b0e

Browse files
committed
Version bump to require Python 3.9
1 parent c54411c commit c399b0e

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
11+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1212
steps:
1313
- uses: actions/checkout@v2
1414
- name: Set up Python ${{ matrix.python-version }}

README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,7 @@ Version History
246246
======= ========== ===========================================================
247247
Version Released Changes
248248
------- ---------- -----------------------------------------------------------
249+
v0.4.0 *Pending* - Requires Python 3.9 or later.
249250
v0.3.1 2025-04-29 - Adds ``RST220`` for redefined anonymous links.
250251
- Requires Python 3.8 or later (no code changes).
251252
v0.3.0 2022-11-16 - Replaced ``setup.py`` with ``pyproject.toml``.

flake8_rst_docstrings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
re.VERBOSE,
2727
)
2828

29-
__version__ = "0.3.1"
29+
__version__ = "0.4.0"
3030

3131

3232
rst_prefix = "RST"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ classifiers = [
2626
'Programming Language :: Python :: 3',
2727
'Programming Language :: Python :: 3 :: Only'
2828
]
29-
requires-python = '>=3.8'
29+
requires-python = '>=3.9'
3030
dependencies = [
3131
'flake8>=3',
3232
'restructuredtext_lint',

0 commit comments

Comments
 (0)