Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
Kouseki Miyo
Zero
Commits
4dd1503f
Commit
4dd1503f
authored
Mar 23, 2020
by
Sean Leavey
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop'
parents
babfa76c
1520da2e
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
23 deletions
+11
-23
.gitlab-ci.yml
.gitlab-ci.yml
+2
-2
docs/cli/library.rst
docs/cli/library.rst
+1
-19
docs/cli/settings.rst
docs/cli/settings.rst
+6
-2
docs/conf.py
docs/conf.py
+1
-0
setup.py
setup.py
+1
-0
No files found.
.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
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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