diff --git a/main/.source b/main/.source index 9b98ed8..edd8455 100644 --- a/main/.source +++ b/main/.source @@ -1,2 +1,2 @@ BRANCH=main -COMMIT_ID=9692e4384b6ba9cbede3ad8510523ebf4f36b830 +COMMIT_ID=81351f7f114d77d13eeb2c76674c2652bac7b6c9 diff --git a/main/_sources/changes/changes_0.1.1.md.txt b/main/_sources/changes/changes_0.1.1.md.txt index 5071a02..eda678f 100644 --- a/main/_sources/changes/changes_0.1.1.md.txt +++ b/main/_sources/changes/changes_0.1.1.md.txt @@ -25,6 +25,7 @@ TBD - #16: Changed path-like parameters from String to Path - #34: Changed "push-enabled" parameter to Bool - #41: Updated importlib_resources and Poetry in GH workflows + - Removed setup.py, installation via wheel from Github or poetry env should be unaffected ## Security @@ -33,8 +34,9 @@ TBD Checked dependencies: * Nox (Code search) * Pytest (Code search + [Tracking-Issue] (https://github.com/pytest-dev/pytest/issues/10392)) - - Dependabot allerts for GitPython, markdown-it-py, Certifi fixed - + - Dependabot alerts for GitPython, markdown-it-py, Certifi fixed + - Dependabot alerts fixed with relock and Poetry updated to 1.8.0 in GitHub actions + ##Documentation - #38: Adjusted documentation to reflect latest changes diff --git a/main/_static/pygments.css b/main/_static/pygments.css index 7547150..c2e07c7 100644 --- a/main/_static/pygments.css +++ b/main/_static/pygments.css @@ -22,6 +22,7 @@ .highlight .cs { color: #8f5902; font-style: italic } /* Comment.Special */ .highlight .gd { color: #a40000 } /* Generic.Deleted */ .highlight .ge { color: #000000; font-style: italic } /* Generic.Emph */ +.highlight .ges { color: #000000; font-weight: bold; font-style: italic } /* Generic.EmphStrong */ .highlight .gr { color: #ef2929 } /* Generic.Error */ .highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ .highlight .gi { color: #00A000 } /* Generic.Inserted */ @@ -101,12 +102,13 @@ body[data-theme="dark"] .highlight .x { color: #d0d0d0 } /* Other */ body[data-theme="dark"] .highlight .p { color: #d0d0d0 } /* Punctuation */ body[data-theme="dark"] .highlight .ch { color: #ababab; font-style: italic } /* Comment.Hashbang */ body[data-theme="dark"] .highlight .cm { color: #ababab; font-style: italic } /* Comment.Multiline */ -body[data-theme="dark"] .highlight .cp { color: #cd2828; font-weight: bold } /* Comment.Preproc */ +body[data-theme="dark"] .highlight .cp { color: #ff3a3a; font-weight: bold } /* Comment.Preproc */ body[data-theme="dark"] .highlight .cpf { color: #ababab; font-style: italic } /* Comment.PreprocFile */ body[data-theme="dark"] .highlight .c1 { color: #ababab; font-style: italic } /* Comment.Single */ body[data-theme="dark"] .highlight .cs { color: #e50808; font-weight: bold; background-color: #520000 } /* Comment.Special */ body[data-theme="dark"] .highlight .gd { color: #d22323 } /* Generic.Deleted */ body[data-theme="dark"] .highlight .ge { color: #d0d0d0; font-style: italic } /* Generic.Emph */ +body[data-theme="dark"] .highlight .ges { color: #d0d0d0; font-weight: bold; font-style: italic } /* Generic.EmphStrong */ body[data-theme="dark"] .highlight .gr { color: #d22323 } /* Generic.Error */ body[data-theme="dark"] .highlight .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */ body[data-theme="dark"] .highlight .gi { color: #589819 } /* Generic.Inserted */ @@ -186,12 +188,13 @@ body:not([data-theme="light"]) .highlight .x { color: #d0d0d0 } /* Other */ body:not([data-theme="light"]) .highlight .p { color: #d0d0d0 } /* Punctuation */ body:not([data-theme="light"]) .highlight .ch { color: #ababab; font-style: italic } /* Comment.Hashbang */ body:not([data-theme="light"]) .highlight .cm { color: #ababab; font-style: italic } /* Comment.Multiline */ -body:not([data-theme="light"]) .highlight .cp { color: #cd2828; font-weight: bold } /* Comment.Preproc */ +body:not([data-theme="light"]) .highlight .cp { color: #ff3a3a; font-weight: bold } /* Comment.Preproc */ body:not([data-theme="light"]) .highlight .cpf { color: #ababab; font-style: italic } /* Comment.PreprocFile */ body:not([data-theme="light"]) .highlight .c1 { color: #ababab; font-style: italic } /* Comment.Single */ body:not([data-theme="light"]) .highlight .cs { color: #e50808; font-weight: bold; background-color: #520000 } /* Comment.Special */ body:not([data-theme="light"]) .highlight .gd { color: #d22323 } /* Generic.Deleted */ body:not([data-theme="light"]) .highlight .ge { color: #d0d0d0; font-style: italic } /* Generic.Emph */ +body:not([data-theme="light"]) .highlight .ges { color: #d0d0d0; font-weight: bold; font-style: italic } /* Generic.EmphStrong */ body:not([data-theme="light"]) .highlight .gr { color: #d22323 } /* Generic.Error */ body:not([data-theme="light"]) .highlight .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */ body:not([data-theme="light"]) .highlight .gi { color: #589819 } /* Generic.Inserted */ diff --git a/main/api/exasol_sphinx_github_pages_generator.console.html b/main/api/exasol_sphinx_github_pages_generator.console.html index 88430ac..747f337 100644 --- a/main/api/exasol_sphinx_github_pages_generator.console.html +++ b/main/api/exasol_sphinx_github_pages_generator.console.html @@ -215,14 +215,14 @@
class exasol_sphinx_github_pages_generator.console.Console#
-

Bases: object

+

Bases: object

-stderr(file: Optional[IO[Any]] = None, nl: bool = True, *, err: bool = True, color: Optional[bool] = None) None#
+stderr(file: Optional[IO[Any]] = None, nl: bool = True, *, err: bool = True, color: Optional[bool] = None) None#

Print a message and newline to stdout or a file. This should be -used instead of print() because it provides better support +used instead of print() because it provides better support for different data, files, and environments.

-

Compared to print(), this does the following:

+

Compared to print(), this does the following: