From 503247e141c58c6733378787569cf0d47b70b08d Mon Sep 17 00:00:00 2001 From: Dimitri Merejkowsky Date: Sat, 23 May 2020 14:21:40 +0200 Subject: [PATCH] =?UTF-8?q?Utilise=20le=20th=C3=A8me=20agogo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Il est un peu moins joli mais: * il est présent par défaut dans sphinx - donc il sera maintenu * il y a des jolis liens * tout est traduit --- cours/poetry.lock | 20 +------------------- cours/pyproject.toml | 1 - cours/source/conf.py | 6 +----- 3 files changed, 2 insertions(+), 25 deletions(-) diff --git a/cours/poetry.lock b/cours/poetry.lock index 265f541..4be173f 100644 --- a/cours/poetry.lock +++ b/cours/poetry.lock @@ -250,23 +250,6 @@ port-for = "0.3.1" tornado = ">=3.2" watchdog = ">=0.7.1" -[[package]] -category = "main" -description = "Sphinx Nameko Theme" -develop = true -name = "sphinx-nameko-theme" -optional = false -python-versions = "*" -version = "0.0.3" - -[package.dependencies] -sphinx = "*" - -[package.source] -reference = "" -type = "directory" -url = "theme/nameko" - [[package]] category = "main" description = "" @@ -369,7 +352,7 @@ pathtools = ">=0.1.1" watchmedo = ["PyYAML (>=3.10)", "argh (>=0.24.1)"] [metadata] -content-hash = "01e690d6b7c88e54d3437b1ed061e0a145d9d9aee1d7ab440de35a73eccb338e" +content-hash = "99945a4c8b6cecb34359f2a46ba87ca85ca77321f9b82c6fe14b4f5b1f907195" python-versions = "^3.7" [metadata.files] @@ -507,7 +490,6 @@ sphinx-autobuild = [ {file = "sphinx-autobuild-0.7.1.tar.gz", hash = "sha256:66388f81884666e3821edbe05dd53a0cfb68093873d17320d0610de8db28c74e"}, {file = "sphinx_autobuild-0.7.1-py2-none-any.whl", hash = "sha256:e60aea0789cab02fa32ee63c7acae5ef41c06f1434d9fd0a74250a61f5994692"}, ] -sphinx-nameko-theme = [] sphinxcontrib-applehelp = [ {file = "sphinxcontrib-applehelp-1.0.1.tar.gz", hash = "sha256:edaa0ab2b2bc74403149cb0209d6775c96de797dfd5b5e2a71981309efab3897"}, {file = "sphinxcontrib_applehelp-1.0.1-py2.py3-none-any.whl", hash = "sha256:fb8dee85af95e5c30c91f10e7eb3c8967308518e0f7488a2828ef7bc191d0d5d"}, diff --git a/cours/pyproject.toml b/cours/pyproject.toml index 2af94a2..893595b 100644 --- a/cours/pyproject.toml +++ b/cours/pyproject.toml @@ -7,7 +7,6 @@ authors = ["Dimitri Merejkowsky "] [tool.poetry.dependencies] python = "^3.7" sphinx = "^2.3.1" -sphinx-nameko-theme = { path = "theme/nameko/" } [tool.poetry.dev-dependencies] sphinx-autobuild = "^0.7.1" diff --git a/cours/source/conf.py b/cours/source/conf.py index 03e5001..2a85206 100644 --- a/cours/source/conf.py +++ b/cours/source/conf.py @@ -1,6 +1,3 @@ -import sphinx_nameko_theme - - project = "Cours Python" copyright = "2020, Dimitri Merejkowsky" author = "Dimitri Merejkowsky" @@ -14,6 +11,5 @@ exclude_patterns = [] keep_warnings = True html_show_sourcelink = False -html_theme_path = [sphinx_nameko_theme.get_html_theme_path()] -html_theme = "nameko" +html_theme = "agogo" html_static_path = ["_static"]