From f44c07fc07bee2e69cff9ff4b298f7924dfe104f Mon Sep 17 00:00:00 2001 From: Severin Ryberg Date: Thu, 13 Sep 2018 13:19:21 +0200 Subject: [PATCH] Updated version number --- geokit/__init__.py | 2 +- setup.py | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/geokit/__init__.py b/geokit/__init__.py index a05c02e..46325ba 100644 --- a/geokit/__init__.py +++ b/geokit/__init__.py @@ -1,6 +1,6 @@ """The GeoKit library is a collection of general geospatial operations""" -__version__ = "1.1.1" +__version__ = "1.1.2" # maybe set GDAL_DATA variable from os import environ as _environ diff --git a/setup.py b/setup.py index 68f935c..66244b7 100644 --- a/setup.py +++ b/setup.py @@ -2,17 +2,17 @@ setup( name='geokit', - version='1.1.1', + version='1.1.2', author='Severin Ryberg', url='https://github.com/FZJ-IEK3-VSA/geokit', packages = find_packages(), include_package_data=True, install_requires = [ "gdal>=2.0.0", - "numpy>=1.13.2", - "descartes>=1.1.0", - "pandas>=0.22.0", - "scipy>=1.0.0", - "matplotlib>=2.1.1", + "numpy", + "descartes", + "pandas", + "scipy", + "matplotlib", ] )