Skip to content

Commit

Permalink
Bump version to v1.0.1 to fix bindist issue with plot_acars
Browse files Browse the repository at this point in the history
Signed-off-by: Casey Webster <casey.webster@gmail.com>
  • Loading branch information
cwebster2 committed Feb 17, 2019
1 parent 8db9f85 commit dfb1aeb
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ From the website for the most recent sounding from a station:
$ skewt uwyoweb --station 72251 skewt.pdf
```

##From Numpy arrays
## From Numpy arrays

```
import numpy as np
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0
1.0.1
2 changes: 1 addition & 1 deletion pymeteo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
bugs using the github issue tracker at https://github.com/cwebster2/pymeteo/issues.
"""
__version__=0.6
__version__="1.0.1"
28 changes: 14 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@
classes for reading CM1 output files in grads and HDF5 format.
"""

classifiers = """\
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Topic :: Scientific/Engineering :: Atmospheric Science
Development Status :: 4 - Beta
Topic :: Software Development :: Libraries :: Python Modules
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
"""
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7"
]

import os
import subprocess
Expand Down Expand Up @@ -55,6 +55,6 @@ def readme():
'bin/skewt-hdf',
'bin/skewt-blank',
'bin/skewt-wrf'],
data_files=[('pymeteo/data', ['pymeteo/data/airport_info.dat'])],
classifiers=filter(None, classifiers.split("\n")))

package_data={'pymeteo.data': ['airport_info.dat']},
classifiers=classifiers
)

0 comments on commit dfb1aeb

Please sign in to comment.