Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Sean Leavey
Zero
Commits
4dd1503f
Commit
4dd1503f
authored
Mar 23, 2020
by
Sean Leavey
Browse files
Merge branch 'develop'
parents
babfa76c
1520da2e
Pipeline
#112799
passed with stage
in 36 minutes and 22 seconds
Changes
5
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
4dd1503f
...
...
@@ -94,7 +94,7 @@ test validation:3.7:
<<
:
*template-test-validation
# Generate the documentation only on creation of new tags.
deploy
pages
:
pages
:
image
:
python:3.8
stage
:
deploy
only
:
...
...
@@ -124,7 +124,7 @@ deploy pages:
-
public
# Generate PyPI release only on creation of new tags.
deploy
pypi
:
pypi
:
image
:
python:3.8
stage
:
deploy
only
:
...
...
docs/cli/library.rst
View file @
4dd1503f
...
...
@@ -45,25 +45,7 @@ Search queries are specified as a set of declarative filters after the ``zero li
command. |Zero| implements an expression parser which allows queries to be
arbitrarily long and complex, e.g.:
.. code-block:: text
$ zero library search "model != OP* & ((vnoise <= 2n & vcorner < 10) | (vnoise <= 25n & inoise < 100f & icorner < 100))" --vnoise --vcorner --inoise --icorner
╒═════════╤════════════════════╤════════════╤════════════════════╤════════════╕
│ Model │ vnoise │ vcorner │ inoise │ icorner │
╞═════════╪════════════════════╪════════════╪════════════════════╪════════════╡
│ PZTFET1 │ 1.0000 nV/sqrt(Hz) │ 1.0000 Hz │ 1.0000 pA/sqrt(Hz) │ 1.0000 Hz │
├─────────┼────────────────────┼────────────┼────────────────────┼────────────┤
│ PZTFET2 │ 1.0000 nV/sqrt(Hz) │ 1.0000 Hz │ 1.0000 pA/sqrt(Hz) │ 1.0000 Hz │
├─────────┼────────────────────┼────────────┼────────────────────┼────────────┤
│ LT1028 │ 850.00 pV/sqrt(Hz) │ 3.5000 Hz │ 1.0000 pA/sqrt(Hz) │ 250.00 Hz │
├─────────┼────────────────────┼────────────┼────────────────────┼────────────┤
│ PZTFET3 │ 1.0000 nV/sqrt(Hz) │ 1.0000 Hz │ 1.0000 pA/sqrt(Hz) │ 1.0000 Hz │
├─────────┼────────────────────┼────────────┼────────────────────┼────────────┤
│ AD706 │ 17.000 nV/sqrt(Hz) │ 3.0000 Hz │ 50.000 fA/sqrt(Hz) │ 10.000 Hz │
├─────────┼────────────────────┼────────────┼────────────────────┼────────────┤
│ AD8628 │ 22.000 nV/sqrt(Hz) │ 1.0000 µHz │ 5.0000 fA/sqrt(Hz) │ 1.0000 µHz │
╘═════════╧════════════════════╧════════════╧════════════════════╧════════════╛
.. command-output:: zero library search "model != OP* & ((vnoise <= 2n & vcorner < 10) | (vnoise <= 25n & inoise < 100f & icorner < 100))"
The expression must be defined on one line. Whitespace is ignored. Where values are specified,
such as "1n", these are parsed by :class:`.Quantity`
...
...
docs/cli/settings.rst
View file @
4dd1503f
...
...
@@ -33,8 +33,12 @@ Showing the configuration
-------------------------
The combined contents of the built-in configuration and any user-defined additions or overrides can
be printed to the screen with ``zero config show``. For large configurations, it is often useful to
specify the ``--paged`` flag to allow the contents to be navigated.
be printed to the screen with:
.. command-output:: zero config show
For large configurations, it is often useful to specify the ``--paged`` flag to allow the contents
to be navigated.
Styling plots
-------------
...
...
docs/conf.py
View file @
4dd1503f
...
...
@@ -43,6 +43,7 @@ extensions = [
'sphinx.ext.coverage'
,
'sphinx.ext.viewcode'
,
'sphinx.ext.napoleon'
,
'sphinxcontrib.programoutput'
,
'sphinx_click.ext'
,
'matplotlib.sphinxext.plot_directive'
,
]
...
...
setup.py
View file @
4dd1503f
...
...
@@ -27,6 +27,7 @@ EXTRAS = {
"sphinx-autobuild"
,
"sphinx-click"
,
"sphinx_rtd_theme"
,
"sphinxcontrib-programoutput"
,
"doc8"
,
"numpydoc"
,
"nbsphinx"
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment