Skip to content

Commit

Permalink
fix to get the benchmark table fully working
Browse files Browse the repository at this point in the history
  • Loading branch information
cholmes committed Jul 26, 2023
1 parent c28a3b8 commit b083df8
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions open_buildings/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Top-level package for open-buildings."""

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

from .open_buildings import *
2 changes: 2 additions & 0 deletions open_buildings/cli.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
"""CLI to convert Google Open Building CSV files to alternate formats."""
import sys
import click
import pandas as pd
from open_buildings import process_benchmark, process_geometries
from tabulate import tabulate


@click.group()
Expand Down
1 change: 0 additions & 1 deletion open_buildings/open_buildings.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
from shapely import wkt
from shapely.geometry import mapping
from openlocationcode import openlocationcode as olc
from tabulate import tabulate

# Global variable, that runs GPQ (https://github.com/planetlabs/gpq) after DuckDB writes the Parquet file.
# This is necessary because DuckDB does not write the GeoParquet metadata (yet). Once DuckDB implements
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.5
current_version = 0.0.6
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.5',
version='0.0.6',
zip_safe=False,
)

0 comments on commit b083df8

Please sign in to comment.