Skip to content

Commit

Permalink
fix to get the cli fully working
Browse files Browse the repository at this point in the history
  • Loading branch information
cholmes committed Jul 26, 2023
1 parent dc0c867 commit c28a3b8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion open_buildings/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

__author__ = """Chris Holmes"""
__email__ = '[email protected]'
__version__ = '0.0.4'
__version__ = '0.0.5'

from .open_buildings import *
1 change: 1 addition & 0 deletions open_buildings/cli.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""CLI to convert Google Open Building CSV files to alternate formats."""
import sys
import click
from open_buildings import process_benchmark, process_geometries


@click.group()
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.4
current_version = 0.0.5
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/opengeos/open-buildings',
version='0.0.4',
version='0.0.5',
zip_safe=False,
)

0 comments on commit c28a3b8

Please sign in to comment.