Skip to content

Commit 2633bb6

Browse files
authored
Merge pull request #46 from mwcraig/fix-notebook
Fix 7.6.0 for jupyter notebook
2 parents fe67462 + 36602b6 commit 2633bb6

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ env:
1515
- TWINE_USERNAME="mwcraig"
1616
matrix:
1717
- CONDA_PY=3.6
18-
- CONDA_PY=3.7.3 # 3.7.4 on conda is broken
18+
- CONDA_PY=3.7
19+
- CONDA_PY=3.8
1920

2021
install:
2122
# Install and set up miniconda.
@@ -35,7 +36,7 @@ install:
3536

3637
# Install a couple of dependencies we need for sure.
3738
# Not sure why cython is necessary since it is listed as a build dependency.
38-
- conda install --quiet jinja2 conda-build=3.18.9 anaconda-client cython twine pytest
39+
- conda install --quiet jinja2 conda-build anaconda-client cython twine pytest
3940

4041
# make a wheel building environment to ensure correct python version.
4142
- conda create --quiet -n wheel-build python=$CONDA_PY wheel cython

appveyor.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ environment:
2424
# python version. Right now conda build does not configure the SDK, and
2525
# the appveyor setup only sets up the SDK once, so separate by python
2626
# versions.
27+
- TARGET_ARCH: "x64"
28+
CONDA_PY: "3.8"
29+
CONDA_INSTALL_LOCN: "C:\\Miniconda37-x64"
2730
- TARGET_ARCH: "x64"
2831
CONDA_PY: "3.7"
2932
CONDA_INSTALL_LOCN: "C:\\Miniconda37-x64"
@@ -32,6 +35,9 @@ environment:
3235
CONDA_INSTALL_LOCN: "C:\\Miniconda36-x64"
3336

3437
# 32-bit builds
38+
- TARGET_ARCH: "x86"
39+
CONDA_PY: "3.8"
40+
CONDA_INSTALL_LOCN: "C:\\Miniconda37"
3541
- TARGET_ARCH: "x86"
3642
CONDA_PY: "3.7"
3743
CONDA_INSTALL_LOCN: "C:\\Miniconda37"
@@ -64,14 +70,11 @@ install:
6470
- cmd: conda config --append channels conda-forge
6571

6672
- cmd: conda config --set always_yes true
67-
# - conda install conda=4.5
68-
# - cmd: conda update --quiet conda python
73+
6974

7075
- echo %CONDA_PY%
7176
- conda update --quiet conda
72-
# Need to do this to pick up newer versions of conda
73-
- if "%CONDA_PY%"=="3.5" conda update --quiet conda
74-
77+
- if "%CONDA_PY%"=="3.8" conda install python=3.8
7578
- cmd: conda install --quiet conda%CONDA_VERSION_PIN% jinja2 conda-build anaconda-client cython wheel %INSTALL_ON_WINDOWS% tqdm%TQDM_PIN%
7679

7780
#- conda create --quiet -n wheel-build python=%CONDA_PY% wheel cython

vpython/vpython_libraries/glowcomm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ var attrsb = {'a':'userzoom', 'b':'userspin', 'c':'range', 'd':'autoscale', 'e':
443443
'p':'left', 'q':'right', 'r':'top', 's':'bottom', 't':'_cloneid',
444444
'u':'logx', 'v':'logy', 'w':'dot', 'x':'dot_radius',
445445
'y':'markers', 'z':'legend', 'A':'label','B':'delta', 'C':'marker_color',
446-
'D':'size_units', 'E':'userpan', 'F':'scroll', 'G':integrate_selected}
446+
'D':'size_units', 'E':'userpan', 'F':'scroll', 'G':'integrate_selected'}
447447

448448
// methods are X in {'m': '23X....'}
449449
var methods = {'a':'select', 'b':'pos', 'c':'start', 'd':'stop', 'f':'clear', // unused eghijklmnopvxyzCDFAB

0 commit comments

Comments
 (0)