Skip to content

Commit

Permalink
added support for Mapping, Iterable and Iterator
Browse files Browse the repository at this point in the history
  • Loading branch information
ken-morel committed Jul 19, 2024
1 parent fa89c7c commit eb6f825
Show file tree
Hide file tree
Showing 6 changed files with 11,806 additions and 5,470 deletions.
10 changes: 8 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
copyright = "2024, ken-morel"
author = "ken-morel"

release = "2.0.1"
version = "2.0.1"
release = "2.0.2"
version = "2.0.2"

# -- General configuration

Expand All @@ -50,8 +50,14 @@
"sphinx.ext.autosummary",
"sphinx.ext.intersphinx",
"sphinx.ext.autosectionlabel",
"notfound.extension",
]

notfound_context = {
'title': 'Page not found',
'body': "<h1>Page not found</h1>\n\nUnfortunately we couldn't find the content you were looking for.",
}

intersphinx_mapping = {
"python": ("https://docs.python.org/3/", None),
"sphinx": ("https://www.sphinx-doc.org/en/master/", None),
Expand Down
1 change: 1 addition & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
sphinx==7.1.2
sphinx-rtd-theme==1.3.0rc1
sphinxawesome-theme
sphinx-notfound-page
6 changes: 6 additions & 0 deletions docs/whatsnew.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ to when I write this doc now, about

These are the highlights

--------------------------------------------------
pyoload v2.0.2
--------------------------------------------------

1. Added support for python built-in `Iterable`, `Iterator` and `Mapping`

--------------------------------------------------
pyoload v2.0.1
--------------------------------------------------
Expand Down
Loading

0 comments on commit eb6f825

Please sign in to comment.