File tree 3 files changed +6
-3
lines changed
packages/python/plotly/plotly/io
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
19
19
requests nbformat six retrying psutil pandas decorator pytest mock nose poppler xarray scikit-image ipython jupyter ipykernel ipywidgets
20
20
21
21
# 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
23
23
fi
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
161
161
These dependencies can both be installed using conda:
162
162
163
163
```
164
- conda install -c plotly plotly-orca==1.2 .1 psutil
164
+ conda install -c plotly plotly-orca==1.3 .1 psutil
165
165
```
166
166
167
167
Or, ` psutil ` can be installed using pip...
Original file line number Diff line number Diff line change @@ -1429,7 +1429,10 @@ def ensure_server():
1429
1429
# specified port.
1430
1430
DEVNULL = open (os .devnull , "wb" )
1431
1431
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
+ )
1433
1436
1434
1437
# Update orca.status so the user has an accurate view
1435
1438
# of the state of the orca server
You can’t perform that action at this time.
0 commit comments