File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
packages/python/plotly/plotly/io Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -19,5 +19,5 @@ if [ ! -d $HOME/miniconda/envs/circle_optional ]; then
1919requests nbformat six retrying psutil pandas decorator pytest mock nose poppler xarray scikit-image ipython jupyter ipykernel ipywidgets
2020
2121 # Install orca into environment
22- $HOME /miniconda/bin/conda install --yes -n circle_optional -c plotly plotly-orca=1.2 .1
22+ $HOME /miniconda/bin/conda install --yes -n circle_optional -c plotly plotly-orca==1.3 .1
2323fi
Original file line number Diff line number Diff line change @@ -161,7 +161,7 @@ installation of the plotly [orca](https://github.com/plotly/orca) command line u
161161These dependencies can both be installed using conda:
162162
163163```
164- conda install -c plotly plotly-orca==1.2 .1 psutil
164+ conda install -c plotly plotly-orca==1.3 .1 psutil
165165```
166166
167167Or, ` psutil ` can be installed using pip...
Original file line number Diff line number Diff line change @@ -1429,7 +1429,10 @@ def ensure_server():
14291429 # specified port.
14301430 DEVNULL = open (os .devnull , "wb" )
14311431 with orca_env ():
1432- orca_state ["proc" ] = subprocess .Popen (cmd_list , stdout = DEVNULL )
1432+ stderr = DEVNULL if "CI" in os .environ else None # fix for CI
1433+ orca_state ["proc" ] = subprocess .Popen (
1434+ cmd_list , stdout = DEVNULL , stderr = stderr
1435+ )
14331436
14341437 # Update orca.status so the user has an accurate view
14351438 # of the state of the orca server
You can’t perform that action at this time.
0 commit comments