diff options
-rw-r--r-- | docs/changelog.rst | 15 | ||||
-rw-r--r-- | docs/conf.py | 5 | ||||
-rw-r--r-- | docs/index.rst | 5 | ||||
-rw-r--r-- | poetry.lock | 30 | ||||
-rw-r--r-- | pyproject.toml | 1 |
5 files changed, 1 insertions, 55 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst deleted file mode 100644 index 25d01756..00000000 --- a/docs/changelog.rst +++ /dev/null @@ -1,15 +0,0 @@ -.. See docs for details on formatting your entries - https://releases.readthedocs.io/en/latest/concepts.html - - -Changelog -========= -- :release:`1.2.1 <22nd February 2022>` -- :support:`3` Added intersphinx to docs. -- :release:`1.2.0 <9th January 2022>` -- :feature:`12` Code block detection regex -- :release:`1.1.0 <2nd December 2021>` -- :support:`2` Autogenerated docs. -- :feature:`2` Regex utility. -- :release:`1.0.0 <17th November 2021>` -- :support:`1` Core package, poetry, and linting CI. diff --git a/docs/conf.py b/docs/conf.py index efc555c1..0f0167ad 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -46,7 +46,6 @@ extensions = [ "sphinx.ext.todo", "sphinx.ext.napoleon", "sphinx_autodoc_typehints", - "releases", "sphinx.ext.linkcode", "sphinx.ext.githubpages", ] @@ -126,10 +125,6 @@ napoleon_numpy_docstring = False napoleon_attr_annotations = True -# -- Options for releases extension ------------------------------------------ -releases_github_path = REPO_LINK.removeprefix("https://github.com/") - - # -- Options for extlinks extension ------------------------------------------ extlinks = { "repo-file": (f"{REPO_LINK}/blob/main/%s", "repo-file %s") diff --git a/docs/index.rst b/docs/index.rst index e7c25ef1..02dd84bb 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -13,11 +13,6 @@ Reference output/botcore -.. toctree:: - :caption: Other: - - changelog - Extras ================== diff --git a/poetry.lock b/poetry.lock index 9848e951..2a4b7e31 100644 --- a/poetry.lock +++ b/poetry.lock @@ -672,18 +672,6 @@ optional = false python-versions = ">=3.6" [[package]] -name = "releases" -version = "1.6.3" -description = "A Sphinx extension for changelog manipulation" -category = "dev" -optional = false -python-versions = "*" - -[package.dependencies] -semantic-version = "<2.7" -sphinx = ">=1.3" - -[[package]] name = "requests" version = "2.27.1" description = "Python HTTP for Humans." @@ -702,14 +690,6 @@ socks = ["PySocks (>=1.5.6,!=1.5.7)", "win-inet-pton"] use_chardet_on_py3 = ["chardet (>=3.0.2,<5)"] [[package]] -name = "semantic-version" -version = "2.6.0" -description = "A library implementing the 'SemVer' scheme." -category = "dev" -optional = false -python-versions = "*" - -[[package]] name = "six" version = "1.16.0" description = "Python 2 and 3 compatibility utilities" @@ -955,7 +935,7 @@ testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest- [metadata] lock-version = "1.1" python-versions = "3.9.*" -content-hash = "fd428068f017418a45a174c2a60af575aad76dfa2707b72010e891753e89cf91" +content-hash = "38723e13b555129a52187dfaecf5cec88572d4a0eed1f5ff7350baccc39ecf70" [metadata.files] aiohttp = [ @@ -1424,18 +1404,10 @@ pyyaml = [ {file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"}, {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"}, ] -releases = [ - {file = "releases-1.6.3-py2.py3-none-any.whl", hash = "sha256:cb3435ba372a6807433800fbe473760cfa781171513f670f3c4b76983ac80f18"}, - {file = "releases-1.6.3.tar.gz", hash = "sha256:555ae4c97a671a420281c1c782e9236be25157b449fdf20b4c4b293fe93db2f1"}, -] requests = [ {file = "requests-2.27.1-py2.py3-none-any.whl", hash = "sha256:f22fa1e554c9ddfd16e6e41ac79759e17be9e492b3587efa038054674760e72d"}, {file = "requests-2.27.1.tar.gz", hash = "sha256:68d7c56fd5a8999887728ef304a6d12edc7be74f1cfa47714fc8b414525c9a61"}, ] -semantic-version = [ - {file = "semantic_version-2.6.0-py3-none-any.whl", hash = "sha256:2d06ab7372034bcb8b54f2205370f4aa0643c133b7e6dbd129c5200b83ab394b"}, - {file = "semantic_version-2.6.0.tar.gz", hash = "sha256:2a4328680073e9b243667b201119772aefc5fc63ae32398d6afafff07c4f54c0"}, -] six = [ {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, diff --git a/pyproject.toml b/pyproject.toml index 37983b82..e7f98819 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,7 +38,6 @@ Sphinx = "4.4.0" tomli = "2.0.0" GitPython = "3.1.26" sphinx-autodoc-typehints = "1.17.0" -releases = "1.6.3" furo = "2022.1.2" |