From 98850a28533c4ac16e6453ebcb1e07ba561c7926 Mon Sep 17 00:00:00 2001 From: Brian Kohan Date: Tue, 19 Dec 2023 13:31:15 -0800 Subject: [PATCH] update version, try fix rtd config --- .readthedocs.yaml | 2 +- doc/requirements.txt | 2 +- pyproject.toml | 2 +- sphinxcontrib/typer/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 163dc34..624bd92 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -17,7 +17,7 @@ build: # Build documentation in the "docs/" directory with Sphinx sphinx: - configuration: docs/conf.py + configuration: doc/conf.py # Optionally build your docs in additional formats such as PDF and ePub formats: diff --git a/doc/requirements.txt b/doc/requirements.txt index c0a0d68..e6a2a1e 100644 --- a/doc/requirements.txt +++ b/doc/requirements.txt @@ -9,4 +9,4 @@ sphinxcontrib-serializinghtml==1.1.9 selenium==4.16.0 webdriver-manager==4.0.1 cairosvg==2.7.1 -sphinxcontrib-typer==0.1.0 +sphinxcontrib-typer==0.1.1 diff --git a/pyproject.toml b/pyproject.toml index bb22cb0..2753018 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sphinxcontrib-typer" -version = "0.1.0" +version = "0.1.1" description = "Auto generate docs for typer commands." authors = ["Brian Kohan "] license = "MIT" diff --git a/sphinxcontrib/typer/__init__.py b/sphinxcontrib/typer/__init__.py index 4e8c04e..e240335 100644 --- a/sphinxcontrib/typer/__init__.py +++ b/sphinxcontrib/typer/__init__.py @@ -46,7 +46,7 @@ from typer.main import get_command as get_typer_command from typer.models import Context as TyperContext -VERSION = (0, 1, 0) +VERSION = (0, 1, 1) __title__ = 'SphinxContrib Typer' __version__ = '.'.join(str(i) for i in VERSION)