Skip to content

Commit

Permalink
Merge pull request #4 from QCoDeS/master
Browse files Browse the repository at this point in the history
update
  • Loading branch information
ThorvaldLarsen authored Dec 1, 2017
2 parents 341dd9a + f3a269c commit 4ed2dd3
Show file tree
Hide file tree
Showing 15 changed files with 3,364 additions and 386 deletions.
16 changes: 11 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -60,19 +60,19 @@ Developer-pyenv

Core developers use virtualenv and pyenv to make sure all the system are the same,
this rules out issues and the usual "it works on my machine". Install pyenv
on your OS `see this <https://github.com/yyuu/pyenv>`__ .
on your OS `see this <https://github.com/pyenv/pyenv>`__ .

$QCODES_INSTALL_DIR is the folder where you want to have the source code.

.. code:: bash
git clone https://github.com/QCoDeS/Qcodes.git $QCODES_INSTALL_DIR
cd $QCODES_INSTALL_DIR
pyenv install 3.5.2
pyenv virtualenv 3.5.2 qcodes-dev
pyenv install 3.6.3
pyenv virtualenv 3.6.3 qcodes-dev
pyenv activate qcodes-dev
pip install -r requirements.txt
pip install coverage pytest-cov pytest --upgrade
pip install -r test_requirements.txt --upgrade
pip install -e .
py.test --cov=qcodes --cov-config=.coveragerc
Expand Down Expand Up @@ -112,11 +112,17 @@ Documentation is updated and deployed on every successful build in master.
We use sphinx for documentations, makefiles are provided both for
Windows, and \*nix.

Make sure that you have the extra dependencies required to install the docs

.. code:: bash
pip install -r docs_requirements.txt
Go to the directory ``docs`` and

.. code:: bash
make html
make html-api
This generate a webpage, index.html, in ``docs/_build/html`` with the
rendered html.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1005,7 +1005,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.5.3"
"version": "3.6.3"
}
},
"nbformat": 4,
Expand Down

Large diffs are not rendered by default.

10 changes: 7 additions & 3 deletions docs/examples/driver_examples/Qcodes example with HP8753D.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"# allow in-notebook matplotlib plots\n",
Expand Down Expand Up @@ -103,7 +105,9 @@
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"# Let's get a single trace of S21 with 10 averages\n",
Expand Down Expand Up @@ -1039,7 +1043,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.0"
"version": "3.6.2"
}
},
"nbformat": 4,
Expand Down
Loading

0 comments on commit 4ed2dd3

Please sign in to comment.