Changeset 42158d2 in sasmodels
- Timestamp:
- Jan 26, 2018 10:54:53 PM (7 years ago)
- Branches:
- master, core_shell_microgels, magnetic_model, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
- Children:
- 1f991d6
- Parents:
- bb4ff2a
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
.travis.yml
rbb4ff2a r42158d2 45 45 - python --version 46 46 #- python -m sasmodels.model_test -v dll all 47 - python -m pytest -v 47 - python -m pytest -v --cache-clear 48 48 before_deploy: 49 49 - echo -e "Host danse.chem.utk.edu\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config -
appveyor.yml
rbb4ff2a r42158d2 89 89 #- python -m sasmodels.model_test dll all 90 90 #- nosetests -v sasmodels/*.py 91 - python -m pytest -v 91 - python -m pytest -v --cache-clear -
sasmodels/jitter.py
r0d5a655 r42158d2 13 13 import argparse 14 14 15 import mpl_toolkits.mplot3d # Adds projection='3d' option to subplot 15 try: # CRUFT: travis-ci does not support mpl_toolkits.mplot3d 16 import mpl_toolkits.mplot3d # Adds projection='3d' option to subplot 17 except ImportError: 18 pass 19 16 20 import matplotlib.pyplot as plt 17 21 from matplotlib.widgets import Slider, CheckButtons
Note: See TracChangeset
for help on using the changeset viewer.