Skip to content

Commit fb98f1a

Browse files
committed
fix #53
1 parent c042ad1 commit fb98f1a

File tree

6 files changed

+1115
-1491
lines changed

6 files changed

+1115
-1491
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
matrix:
2828
# run static analysis on bleeding and trailing edges
29-
python-version: [ '3.9', '3.10', '3.13', '3.14' ]
29+
python-version: [ '3.10', '3.13', '3.14' ]
3030

3131
steps:
3232
- uses: actions/checkout@v5

.github/workflows/test.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
strategy:
2525
matrix:
26-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
26+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
2727
sphinx-version:
2828
- '6.0'
2929
- '7.0'
@@ -37,8 +37,6 @@ jobs:
3737
sphinx-version: '7.0'
3838
- python-version: '3.13'
3939
sphinx-version: '6.0'
40-
- python-version: '3.9'
41-
sphinx-version: '8.0'
4240
- python-version: '3.14'
4341
sphinx-version: '7.0'
4442
- python-version: '3.14'

doc/source/changelog.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
Change Log
55
==========
66

7+
v0.7.0 (2025-11-22)
8+
===================
9+
10+
* `Drop python 3.9 support <https://github.com/sphinx-contrib/typer/issues/53>`_
11+
712
v0.6.2 (2025-09-23)
813
===================
914

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "sphinxcontrib-typer"
7-
version = "0.6.2"
8-
requires-python = ">=3.9,<4.0"
7+
version = "0.7.0"
8+
requires-python = ">=3.10,<4.0"
99
authors = [
1010
{name = "Brian Kohan", email = "[email protected]"},
1111
]
@@ -26,7 +26,6 @@ classifiers = [
2626
"License :: OSI Approved :: MIT License",
2727
"Operating System :: OS Independent",
2828
"Programming Language :: Python",
29-
"Programming Language :: Python :: 3.9",
3029
"Programming Language :: Python :: 3.10",
3130
"Programming Language :: Python :: 3.11",
3231
"Programming Language :: Python :: 3.12",
@@ -63,7 +62,7 @@ html = [
6362
]
6463
pdf = [
6564
"cairosvg>=2.7.0,<3.0.0",
66-
"lxml>=4.2.0,<6.0.0"
65+
"lxml>=4.2.0,<7.0.0"
6766
]
6867
png = [
6968
"selenium>=4.0.0,<5.0.0",

src/sphinxcontrib/typer/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
from typer.models import Context as TyperContext
5555
from typer.models import TyperInfo
5656

57-
VERSION = (0, 6, 2)
57+
VERSION = (0, 7, 0)
5858

5959
__title__ = "SphinxContrib Typer"
6060
__version__ = ".".join(str(i) for i in VERSION)

0 commit comments

Comments
 (0)