diff --git a/maup/__init__.py b/maup/__init__.py index fe4f5bc..6239d94 100644 --- a/maup/__init__.py +++ b/maup/__init__.py @@ -16,7 +16,7 @@ "`geopandas.options.use_pygeos = False` before importing your shapefile." ) -__version__ = "1.0.6" +__version__ = "1.0.7" __all__ = [ "assign", "intersections", diff --git a/pyproject.toml b/pyproject.toml index be694d5..356a4a3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "maup" -version = "1.0.6" +version = "1.0.7" description = "The geospatial toolkit for redistricting data" authors = ["Max Hully ", "Max Fan "] readme = "README.md" diff --git a/setup.py b/setup.py index 9cb09c5..dc18db4 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import find_packages, setup -version = "1.0.6" +version = "1.0.7" with open("./README.md") as f: long_description = f.read()