Skip to content

Commit

Permalink
Preparing release 0.9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
alexamici committed Feb 26, 2019
1 parent 3bb55cf commit d8582e9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.rst
Expand Up @@ -2,13 +2,13 @@
Changelog for cfgrib
====================

0.9.6 (unreleased)
0.9.6 (2019-02-26)
------------------

- Added *conda-forge* package.
See: `#5 <https://github.com/ecmwf/cfgrib/issues/5>`_.
- Add support for *Windows* by installing *ecCodes* via *conda*.
See: `#7 <https://github.com/ecmwf/cfgrib/issues/7>`_.
- Added *conda-forge* package.
See: `#5 <https://github.com/ecmwf/cfgrib/issues/5>`_.


0.9.5.7 (2019-02-24)
Expand Down
2 changes: 2 additions & 0 deletions MANIFEST.in
Expand Up @@ -7,7 +7,9 @@ include LICENSE
include Makefile
include tox.ini
include tests/sample-data/era5-levels-members.grib
include *.yml
recursive-include ci *.in
recursive-include ci *.ps1
recursive-include ci *.txt
recursive-include ci *.yml
recursive-include docs *.gitkeep
Expand Down
2 changes: 1 addition & 1 deletion cfgrib/__init__.py
Expand Up @@ -15,7 +15,7 @@

from __future__ import absolute_import, division, print_function, unicode_literals

__version__ = '0.9.6.dev0'
__version__ = '0.9.6'

# cfgrib core API depends on the ECMWF ecCodes C-library only
from .cfmessage import CfMessage
Expand Down
2 changes: 1 addition & 1 deletion cfgrib/bindings.py
Expand Up @@ -575,7 +575,7 @@ def portable_handle_new_from_samples(samplename, product_kind):
import platform
handle = ffi.NULL
if platform.platform().startswith('Windows'):
samples_folder = ffi.string(lib.codes_samples_folder(ffi.NULL))
samples_folder = ffi.string(lib.codes_samples_path(ffi.NULL))
sample_path = os.path.join(samples_folder, samplename + b'.tmpl')
try:
with open(sample_path) as file:
Expand Down

0 comments on commit d8582e9

Please sign in to comment.