Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement 1D animations #36

Merged
merged 26 commits into from
Oct 24, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
2afe9f8
Implement 1D animations
johnomotani Jul 15, 2019
317420e
Use None as default argument for vmin/vmax in animate functions
johnomotani Jul 16, 2019
48ab357
Animation Writer changed to PillowWriter in animate1D and animate2D
rdoyle45 Sep 10, 2019
283d098
Update xbout/plotting/animate.py
rdoyle45 Sep 11, 2019
6e72dd8
Update xbout/plotting/animate.py
rdoyle45 Sep 12, 2019
ef8f211
Update to required Matplotlib version
rdoyle45 Sep 12, 2019
75ebd07
Python 3.5 doesn't support Matplotlib 3.1.0
rdoyle45 Sep 12, 2019
f9848d0
Test file for animate1D and 2D
rdoyle45 Sep 12, 2019
4836ce4
PEP8 issues fixed
rdoyle45 Sep 12, 2019
1049b02
PEP8 issues fixed
rdoyle45 Sep 12, 2019
72dd9b5
Path to data incorrect
rdoyle45 Sep 12, 2019
33d85a8
Removal of unwanted line
rdoyle45 Sep 12, 2019
8a35031
Pillow required for PillowWriter
rdoyle45 Sep 12, 2019
45245c2
Dependency update
rdoyle45 Sep 15, 2019
88868d0
Improved use of python functions for pytest and added use of pytest f…
rdoyle45 Oct 13, 2019
be183be
PEP8 fixes
rdoyle45 Oct 13, 2019
6447865
PEP8 fixes
rdoyle45 Oct 13, 2019
bfad80e
Remove .gif suffix from test
rdoyle45 Oct 14, 2019
c9d5d2f
Merge pull request #52 from rdoyle45/1d-animations
johnomotani Oct 15, 2019
738c0da
Merge branch 'master' into 1d-animations
johnomotani Oct 21, 2019
6a29502
Add more fake grid data in test_load.create_bout_ds
johnomotani Oct 23, 2019
021dcd2
Unique random data in files created by create_bout_ds_list
johnomotani Oct 23, 2019
1426210
Reorder dimensions in create_bout_ds to ('t','x','y','z')
johnomotani Oct 23, 2019
3ca6274
Implement 'linear' option for create_bout_ds
johnomotani Oct 23, 2019
452e69d
Remove dependence of test_animate on saved binary files
johnomotani Oct 21, 2019
f09f7a7
Bump required Python version to 3.6, test 3.6 and 3.7 with Travis
johnomotani Oct 23, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Bump required Python version to 3.6, test 3.6 and 3.7 with Travis
In Python-3.5 there is an incompatibility between pathlib.Path and
pytest.LocalPath, which is fixed in Python-3.6.
  • Loading branch information
johnomotani committed Oct 23, 2019
commit f09f7a7ebf811050bba985baa041162abb650328
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: python
python:
- "3.5"
- "3.6"
- "3.7"
install:
- pip install --upgrade setuptools pip pytest pytest-cov coverage codecov
- pip install -r requirements.txt
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
author_email="thomas.nicholas@york.ac.uk",
description='Collect data from BOUT++ runs in python using xarray',
license="Apache",
python_requires='>=3.5',
python_requires='>=3.6',
install_requires=[
'xarray>=v0.12.2',
'dask[array]>=1.0.0',
Expand All @@ -43,7 +43,6 @@
"License :: OSI Approved :: Apache License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: Visualization"
Expand Down