Skip to content

Commit

Permalink
prepare for 2.1.5 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jswhit committed Nov 13, 2023
1 parent 4ffc06c commit e08b720
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
since version 2.1.4 release
===========================
version 2.1.5 release
=====================
* remove python 3.6 support, add python 3.11,3.12
* add __dir__ method so dir(grb) returns grib keys.
* allow pygrib.open to open a path specified by a pathlib.Path object
(issue #193, PR #204)
* allow pygrib.open to open a path specified by a PathLike object
* fix compilation issues on macos x
* allow pygrib.open to take an io.BufferedReader object as an argument
(issue #83, PR #206)
* ensure that RuntimeError contains a message of type `str` (PR #212)
Expand Down
2 changes: 1 addition & 1 deletion src/pygrib/_pygrib.pyx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""pygrib module"""

__version__ = '2.1.4'
__version__ = '2.1.5'

import numpy as np
cimport numpy as npc
Expand Down

0 comments on commit e08b720

Please sign in to comment.