Skip to content

Commit

Permalink
remove version.py
Browse files Browse the repository at this point in the history
  • Loading branch information
njwilson23 committed Sep 17, 2017
1 parent 99148c5 commit d3973c2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
9 changes: 9 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Highlights

## changes with 0.10dev

- breaking API cleanups
- convert properties to methods, e.g. `Geometry.bbox` becomes
`Geometry.bbox(\*\*kwargs)`
- remove `.get\_\*` methods
- remove `multipart_from_singleparts` and `merge_multiparts` methods, which are
now handled by constructors

## changes with 0.8

- refactor GeoJSON support into external module,
Expand Down
2 changes: 0 additions & 2 deletions karta/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@

__all__ = ["vector", "raster", "crs", "tile", "errors"]

from .version import __version__

from . import vector
from . import raster
from . import crs
Expand Down
1 change: 0 additions & 1 deletion karta/version.py

This file was deleted.

5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@
from setuptools import setup, Extension
from setuptools.command.build_ext import build_ext as _build_ext

sys.path.append("karta")
from version import __version__ as VERSION

class build_ext(_build_ext):

# solution taken from http://stackoverflow.com/questions/19919905/ \
Expand Down Expand Up @@ -79,7 +76,7 @@ def finalize_options(self):

setup(
name = "karta",
version = VERSION,
version = "0.10.0dev0",
setup_requires = ["numpy>=1.10"],
install_requires = ["numpy>=1.10",
"pyproj>=1.9",
Expand Down

0 comments on commit d3973c2

Please sign in to comment.