Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated env and developer docs #952

Merged
merged 1 commit into from
Jan 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions doc/developer_guide/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,12 @@ Since Panel interfaces with a large range of different libraries the
full test suite requires a wide range of dependencies. To make it
easier to install and run different parts of the test suite across
different platforms Panel uses a library called pyctdev to make things
more consistent and general.
more consistent and general. To start with `cd` into the panel
directory and then set up conda using the following commands:

.. code-block:: sh

cd panel
conda install -c pyviz "pyctdev>0.5.0"
doit ecosystem_setup

Expand All @@ -84,7 +86,7 @@ set up an environment with:

.. code-block:: sh

doit env_create -c pyviz/label/dev -c conda-forge --name=panel_dev --python=3.6
doit env_create -c pyviz/label/dev -c conda-forge --name=panel_dev --python=3.7

Specify the desired Python version, currently Panel officially
supports Python 2.7, 3.5, 3.6 and 3.7. Once the environment has been
Expand All @@ -99,7 +101,7 @@ suite:

.. code-block:: sh

doit develop_install -c pyviz/label/dev -c conda-forge -o tests -o recommended
doit develop_install -c pyviz/label/dev -c conda-forge -c bokeh -o tests -o recommended

.. _devguide_python_setup:

Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,18 +109,19 @@ def run(self):
'pytest',
'scipy',
'nbsmoke >=0.2.0',
'pytest-cov ==2.5.1',
'pytest-cov',
'codecov',
# For examples
'hvplot',
'plotly',
'altair',
'streamz',
'vega_datasets',
'vtk ==8.1.1',
'vtk',
'scikit-learn',
'datashader',
'jupyter_bokeh'
'jupyter_bokeh',
'nodejs'
],
'recommended': _recommended,
'doc': _recommended + [
Expand Down