-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
**Main Changes:** - Add tanh function to ParamObj (#798) - Upgrades to AnalogDevice specs (#807) - **Defining the new Backend API classes** (#764) - **Documentation Upgrade** (#811)
- Loading branch information
Showing
104 changed files
with
5,975 additions
and
1,092 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 |
---|---|---|
|
@@ -13,6 +13,7 @@ _build | |
__pycache__/ | ||
build/ | ||
docs/build/ | ||
_autosummary/ | ||
dist/ | ||
env* | ||
*.egg-info/ | ||
|
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 |
---|---|---|
@@ -1 +1 @@ | ||
1.2.2 | ||
1.3.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 |
---|---|---|
@@ -1,11 +1,10 @@ | ||
# For generating documentation. | ||
Sphinx < 7 | ||
Sphinx < 8 | ||
sphinx-rtd-theme # documentation theme | ||
sphinx_autodoc_typehints == 1.21.3 | ||
sphinx_autodoc_typehints == 2.2.1 | ||
nbsphinx | ||
nbsphinx-link | ||
ipython >= 8.10 # Avoids bug with code highlighting | ||
myst-parser | ||
|
||
# Not on PyPI | ||
# pandoc |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,51 @@ | ||
/* Limit content width, for large screens only */ | ||
@media screen and (min-width: 1100px) { | ||
.wy-nav-content { | ||
width: 80% !important; | ||
max-width: 1600px !important; | ||
} | ||
} | ||
|
||
/* Apply Pasqal branding colors */ | ||
.wy-nav-content-wrap { | ||
background-color: #fcfcfc; | ||
} | ||
|
||
.wy-nav-top, | ||
.wy-nav-side { | ||
background-color: #243237; | ||
} | ||
|
||
.wy-side-nav-search { | ||
background-color: #00ac85; | ||
} | ||
|
||
.wy-side-nav-search a.icon { | ||
font-size: 0px; | ||
margin-bottom: 1rem; | ||
} | ||
|
||
.wy-side-nav-search a.icon img.logo { | ||
max-width: 200px; | ||
} | ||
|
||
.wy-menu-vertical header, | ||
.wy-menu-vertical p.caption { | ||
color: #00ac85; | ||
} | ||
|
||
.wy-menu-vertical a { | ||
color: white; | ||
} | ||
|
||
.wy-menu-vertical a:hover { | ||
background: #173035; | ||
} | ||
|
||
a { | ||
color: #00ac85; | ||
} | ||
|
||
a:hover { | ||
color: #00c887; | ||
} |
This file was deleted.
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,37 @@ | ||
{{ objname| escape | underline}} | ||
|
||
.. currentmodule:: {{ module }} | ||
|
||
.. autoclass:: {{ objname }} | ||
:members: | ||
:inherited-members: | ||
:show-inheritance: | ||
:member-order: groupwise | ||
|
||
{% block attributes %} | ||
{% if attributes %} | ||
.. rubric:: {{ _('Attributes') }} | ||
|
||
.. autosummary:: | ||
:nosignatures: | ||
{% for item in attributes %} | ||
~{{ name }}.{{ item }} | ||
{%- endfor %} | ||
{% endif %} | ||
{% endblock %} | ||
|
||
{% block methods %} | ||
{% if methods and methods != ['__init__'] %} | ||
.. rubric:: {{ _('Methods') }} | ||
|
||
.. autosummary:: | ||
:nosignatures: | ||
{% for item in methods %} | ||
{%- if not item.startswith('_') or item in ['__call__'] %} | ||
~{{ name }}.{{ item }} | ||
{%- endif -%} | ||
{%- endfor %} | ||
|
||
.. rubric:: {{ _('Signatures') }} | ||
{% 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{{ objname | escape | underline}} | ||
|
||
.. currentmodule:: {{ module }} | ||
|
||
.. autofunction:: {{ objname }} |
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,44 @@ | ||
{% extends "!autosummary/module.rst" %} | ||
|
||
{# This file is almost the same as the default, but adds :toctree: to the autosummary directives. | ||
The original can be found at `sphinx/ext/autosummary/templates/autosummary/module.rst`. #} | ||
|
||
|
||
{% block functions %} | ||
{%- if functions %} | ||
.. rubric:: {{ _('Functions') }} | ||
|
||
.. autosummary:: | ||
:toctree: | ||
|
||
{% for item in functions %} | ||
{{ item }} | ||
{%- endfor %} | ||
{% endif %} | ||
{%- endblock %} | ||
|
||
{% block classes %} | ||
{% if classes %} | ||
.. rubric:: {{ _('Classes') }} | ||
.. autosummary:: | ||
:toctree: | ||
:nosignatures: | ||
|
||
{% for item in classes %} | ||
~{{ fullname }}.{{ item }} | ||
{%- endfor %} | ||
{% endif %} | ||
{% endblock %} | ||
|
||
{%- block modules %} | ||
{#{%- if modules %} | ||
.. rubric:: Modules | ||
|
||
.. autosummary:: | ||
:toctree: | ||
|
||
{% for item in modules %} | ||
{{ item }} | ||
{%- endfor %} | ||
{% endif %}#} | ||
{%- endblock %} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.