forked from NCAR/CESM_postprocessing
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Squashed 'averager/pyAverager/' changes from 1cc306a..018f31f
018f31f Merge pull request NCAR#44 from NCAR/devel f28eccb Merge pull request NCAR#43 from NCAR/char_bug 6fbc661 Bump verison number 92a2b8c Merge pull request NCAR#42 from NCAR/char_bug e67cc3a Update to the previous fix: 37afc58 Merge pull request NCAR#41 from NCAR/char_bug e4b2715 Fix bug with character identification. The code was only checking for 'S1'. Compressed netcdf4 files identify characters as 'S3'. e3f121e Merge pull request NCAR#40 from NCAR/devel 28f36ec Merge pull request NCAR#38 from NCAR/devel 3563c85 Merge pull request NCAR#35 from NCAR/devel 0f5eb0b Merge pull request NCAR#34 from NCAR/devel 34747e1 Merge pull request NCAR#29 from NCAR/devel fa67fce Merge pull request NCAR#26 from NCAR/devel 4ac6f44 Merge pull request NCAR#24 from NCAR/devel 3fc272d Merge pull request NCAR#22 from NCAR/devel 108739b Merge pull request NCAR#20 from NCAR/devel 490ba39 Merge pull request NCAR#18 from NCAR/devel d34c46e Merge pull request NCAR#15 from NCAR/devel d2290b6 Merge pull request NCAR#9 from NCAR/devel 2436413 Merge pull request NCAR#6 from NCAR-CISL-ASAP/devel 2125a4f Merge pull request NCAR#4 from NCAR-CISL-ASAP/devel c51daf1 Merge pull request NCAR#1 from NCAR-CISL-ASAP/devel git-subtree-dir: averager/pyAverager git-subtree-split: 018f31ff4013fa0b240470003f27025811aeaf11
- Loading branch information
Showing
5 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
December 13, 2017 | ||
February 14, 2018 | ||
|
||
====================================== | ||
|
||
|
@@ -9,7 +9,7 @@ PyAverager | |
A package used for computing averages from climate model output. | ||
|
||
Authors: Sheri Mickelson, Kevin Paul, and John Dennis | ||
Version: 0.9.14 | ||
Version: 0.9.15 | ||
Copyright: Contained within LICENSE.txt | ||
Comments and feedback: [email protected] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,5 @@ | |
|
||
import PyAverager, specification, PreProc | ||
|
||
__version__ = "0.9.14" | ||
__version__ = "0.9.15" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
from distutils.core import setup | ||
|
||
setup(name='PyAverager', | ||
version='0.9.14', | ||
version='0.9.15', | ||
description='Parallel Python Averager for Climate Data', | ||
author='Sheri Mickelson', | ||
author_email='[email protected]', | ||
|