diff --git a/HISTORY.rst b/HISTORY.rst index 9af78aa..be45e4a 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -7,6 +7,8 @@ History * Added fixed biasmap plot limits option to enable consistent visualizations across model runs * Updated documentation to reflect new feature +* Fixed issue #28: Properly locate GeoJSON files in both development and installed environments +* Fixed issue #27: Added missing netCDF4 dependency to setup.py 0.1.5 (2023-12-08) ------------------ diff --git a/meta.yaml b/meta.yaml index 4186e73..1442201 100644 --- a/meta.yaml +++ b/meta.yaml @@ -1,5 +1,5 @@ {% set name = "cmpitool" %} -{% set version = "1.0.0" %} +{% set version = "1.1.0" %} package: name: "{{ name|lower }}" diff --git a/setup.py b/setup.py index ff15fc2..3c8e3cd 100644 --- a/setup.py +++ b/setup.py @@ -14,6 +14,7 @@ requirements = [ "geopandas", "matplotlib", + "netCDF4", "numpy", "pandas >=1.0.0", "pooch",