-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
34 changed files
with
822 additions
and
216 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,29 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: pip | ||
directory: "/" | ||
target-branch: dev | ||
commit-message: | ||
prefix: "[Dependabot]" | ||
labels: | ||
# Maintain Python packages | ||
- package-ecosystem: "pip" | ||
directory: "/" | ||
target-branch: dev | ||
commit-message: | ||
prefix: "[Dependabot]" | ||
labels: | ||
- Dependencies | ||
assignees: | ||
- Paebbels | ||
reviewers: | ||
- Paebbels | ||
schedule: | ||
interval: daily | ||
reviewers: | ||
- Paebbels | ||
- Umarcor | ||
schedule: | ||
interval: "daily" # Checks on Monday trough Friday. | ||
|
||
# Maintain GitHub Action runners | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
target-branch: dev | ||
commit-message: | ||
prefix: "[Dependabot]" | ||
labels: | ||
- Dependencies | ||
reviewers: | ||
- Paebbels | ||
- Umarcor | ||
schedule: | ||
interval: "weekly" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,16 @@ | ||
# New Features | ||
|
||
* tbd | ||
|
||
# Changes | ||
|
||
* tbd | ||
|
||
# Bug Fixes | ||
|
||
* tbd | ||
|
||
---------- | ||
# Related PRs: | ||
|
||
* tbd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"files.trimTrailingWhitespace": false, | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
.. # Template modified by Patrick Lehmann | ||
* removed automodule on top, because private members are activated for autodoc (no doubled documentation). | ||
* Made sections like 'submodules' bold text, but no headlines to reduce number of ToC levels. | ||
=={{ '=' * node.name|length }}== | ||
``{{ node.name }}`` | ||
=={{ '=' * node.name|length }}== | ||
|
||
{##} | ||
{%- block modules -%} | ||
{%- if subnodes %} | ||
|
||
**Submodules** | ||
|
||
|
||
.. toctree:: | ||
{% for item in subnodes %} | ||
{{ item.name }} | ||
{%- endfor %} | ||
{##} | ||
{%- endif -%} | ||
{%- endblock -%} | ||
{##} | ||
.. currentmodule:: {{ node.name }} | ||
{##} | ||
{%- block functions -%} | ||
{%- if node.functions %} | ||
|
||
**Functions** | ||
|
||
{% for item, obj in node.functions.items() -%} | ||
- :py:func:`{{ item }}`: | ||
{{ obj|summary }} | ||
|
||
{% endfor -%} | ||
|
||
{% for item in node.functions %} | ||
.. autofunction:: {{ item }} | ||
{##} | ||
{%- endfor -%} | ||
{%- endif -%} | ||
{%- endblock -%} | ||
|
||
{%- block classes -%} | ||
{%- if node.classes %} | ||
|
||
**Classes** | ||
|
||
{% for item, obj in node.classes.items() -%} | ||
- :py:class:`{{ item }}`: | ||
{{ obj|summary }} | ||
|
||
{% endfor -%} | ||
|
||
{% for item in node.classes %} | ||
.. autoclass:: {{ item }} | ||
:members: | ||
|
||
.. rubric:: Inheritance | ||
.. inheritance-diagram:: {{ item }} | ||
:parts: 1 | ||
{##} | ||
{%- endfor -%} | ||
{%- endif -%} | ||
{%- endblock -%} | ||
|
||
{%- block exceptions -%} | ||
{%- if node.exceptions %} | ||
|
||
**Exceptions** | ||
|
||
{% for item, obj in node.exceptions.items() -%} | ||
- :py:exc:`{{ item }}`: | ||
{{ obj|summary }} | ||
|
||
{% endfor -%} | ||
|
||
{% for item in node.exceptions %} | ||
.. autoexception:: {{ item }} | ||
|
||
.. rubric:: Inheritance | ||
.. inheritance-diagram:: {{ item }} | ||
:parts: 1 | ||
{##} | ||
{%- endfor -%} | ||
{%- endif -%} | ||
{%- endblock -%} | ||
|
||
{%- block variables -%} | ||
{%- if node.variables %} | ||
|
||
**Variables** | ||
|
||
{% for item, obj in node.variables.items() -%} | ||
- :py:data:`{{ item }}` | ||
{% endfor -%} | ||
|
||
{% for item, obj in node.variables.items() %} | ||
.. autodata:: {{ item }} | ||
:annotation: | ||
|
||
.. code-block:: text | ||
{{ obj|pprint|indent(6) }} | ||
{##} | ||
{%- endfor -%} | ||
{%- endif -%} | ||
{%- endblock -%} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Coverage Report | ||
############### | ||
|
||
*Placeholder for the Coverage report generated with* ``pytest`` *and* ``coverage``. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Python Class Reference | ||
###################### | ||
|
||
Reference of all packages and modules: | ||
|
||
.. toctree:: | ||
|
||
pyEDAA.ToolSetup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
-r ../requirements.txt | ||
|
||
pyTooling>=1.9.2 | ||
pyTooling>=1.9.5 | ||
|
||
# Enforce latest version on ReadTheDocs | ||
sphinx>=4.3.0 | ||
sphinx>=4.4.0 | ||
|
||
# Sphinx Extenstions | ||
sphinxcontrib-mermaid>=0.7.1 | ||
autoapi>=2.0.1 | ||
sphinx_fontawesome>=0.0.6 | ||
sphinx_autodoc_typehints>=1.14.1 | ||
sphinx_autodoc_typehints>=1.17.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Static Type Checking Report | ||
########################### | ||
|
||
*Placeholder for the Static Type Checking report generated with* ``mypy``. |
Oops, something went wrong.