From 24f8035f98d4afde036360da29db00ed7fc119a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=AD=20Bosch?= Date: Thu, 25 Jul 2019 07:14:16 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.0.1=20=E2=86=92=201.0.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- pylandstats/__init__.py | 2 +- setup.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 740ac9d..a77105e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.1 +current_version = 1.0.2 commit = True tag = True diff --git a/pylandstats/__init__.py b/pylandstats/__init__.py index 751662b..a0fcf13 100644 --- a/pylandstats/__init__.py +++ b/pylandstats/__init__.py @@ -2,4 +2,4 @@ from .landscape import * from .spatiotemporal import * -__version__ = '1.0.1' +__version__ = '1.0.2' diff --git a/setup.py b/setup.py index 87df027..b6a9c7a 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ # See: https://github.com/pypa/setuptools/issues/309 and https://bit.ly/300HKtK from pythran.dist import PythranExtension -__version__ = '1.0.1' +__version__ = '1.0.2' classifiers = [ 'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)', @@ -31,7 +31,7 @@ # Extra dependencies for geometric operations # we deliberately do not set any lower nor upper bounds on `geopandas` # dependency so that people might install its cythonized version -geo = ["geopandas", "shapely >= 1.0.1"] +geo = ["geopandas", "shapely >= 1.0.2"] install_requires = [x.strip() for x in all_reqs if 'git+' not in x] dependency_links = [