Skip to content

Commit 1fa1fb4

Browse files
committed
Configured Travis CI to use the new conda environment file instead of manually installing them. Also added a few more dependencies to the environment file that were missed
1 parent 4d15337 commit 1fa1fb4

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ install:
2121
- conda update conda
2222

2323
# Install dependencies
24-
- conda create -n test-streamz python=$TRAVIS_PYTHON_VERSION pytest tornado toolz flake8 coverage codecov networkx graphviz python-graphviz dask distributed pandas bokeh ipython ipykernel ipywidgets python-confluent-kafka -c conda-forge -c bokeh
24+
- conda env create --name test-streamz --file ./conda/environments/streamz_dev.yml
2525
- source activate test-streamz
2626
- pip install git+https://github.com/dask/distributed.git --upgrade --no-deps
2727

conda/environments/streamz_dev.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: streamz_dev
22
channels:
33
- conda-forge
4+
- bokeh
45
- defaults
56
dependencies:
67
- python>=3.7
@@ -20,3 +21,12 @@ dependencies:
2021
- numpydoc
2122
- sphinx
2223
- sphinx_rtd_theme
24+
- codecov
25+
- coverage
26+
- networkx
27+
- graphviz
28+
- python-graphviz
29+
- bokeh
30+
- ipython
31+
- ipykernel
32+
- ipywidgets

0 commit comments

Comments
 (0)