Skip to content

Commit

Permalink
pre-release try 100
Browse files Browse the repository at this point in the history
  • Loading branch information
ElcoK committed Nov 19, 2024
1 parent c09f7c9 commit 4e8dac2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "damagescanner"
version = "0.9-beta.4"
version = "0.9-beta.5"
authors = [
{name = "Elco Koks", email = "[email protected]"},
{name = "Jens de Bruijn", email = "[email protected]"},
Expand Down
4 changes: 2 additions & 2 deletions src/damagescanner/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
from pathlib import Path
from scipy import integrate

from vector import VectorScanner, VectorExposure
from raster import RasterScanner
from damagescanner.vector import VectorScanner, VectorExposure
from damagescanner.raster import RasterScanner

import warnings

Expand Down
2 changes: 1 addition & 1 deletion src/damagescanner/raster.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import warnings
from pathlib import PurePath
import shapely
from utils import _check_output_path, _check_scenario_name
from damagescanner.utils import _check_output_path, _check_scenario_name


def _match_rasters(raster_in1, raster_in2):
Expand Down
4 changes: 2 additions & 2 deletions src/damagescanner/vector.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@

import traceback

from utils import _check_output_path, _check_scenario_name
from osm import read_osm_data
from damagescanner.utils import _check_output_path, _check_scenario_name
from damagescanner.osm import read_osm_data


def _convert_to_meters(feature):
Expand Down

0 comments on commit 4e8dac2

Please sign in to comment.