Skip to content

Commit

Permalink
chore: revert version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
RaczeQ committed Jan 3, 2025
1 parent 381ae0b commit f7f16cd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion quackosm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from quackosm.pbf_file_reader import PbfFileReader

__app_name__ = "QuackOSM"
__version__ = "0.12.1"
__version__ = "0.12.0"

__all__ = [
"PbfFileReader",
Expand Down
5 changes: 2 additions & 3 deletions quackosm/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
from pooch import get_logger as get_pooch_logger
from pooch import retrieve

from quackosm._constants import FORCE_TERMINAL
from quackosm.osm_extracts.extract import OsmExtractSource
from quackosm.osm_extracts.geofabrik import _get_geofabrik_index

Expand Down Expand Up @@ -55,7 +54,7 @@ def download_osm_extracts_indexes(): # type: ignore
file_download_url,
fname=file_name,
path=download_directory,
progressbar=not FORCE_TERMINAL,
progressbar=False,
known_hash=None,
)

Expand All @@ -78,7 +77,7 @@ def add_pbf_files(doctest_namespace, download_osm_extracts_indexes): # type: ig
pbf_file_download_url,
fname=f"{extract_name}.osm.pbf",
path=download_directory,
progressbar=not FORCE_TERMINAL,
progressbar=False,
known_hash=None,
)
doctest_namespace[f"{extract_name}_pbf_path"] = pbf_file_path
Expand Down
3 changes: 1 addition & 2 deletions tests/benchmark/test_big_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
from pooch import retrieve

from quackosm import PbfFileReader, geocode_to_geometry
from quackosm._constants import FORCE_TERMINAL
from quackosm._osm_tags_filters import OsmTagsFilter


Expand All @@ -30,7 +29,7 @@ def test_big_file(extract_name: str, geocode_filter: list[str], tags_filter: Osm
f"https://download.geofabrik.de/europe/{extract_name}-latest.osm.pbf",
fname=f"{extract_name}.osm.pbf",
path=files_dir,
progressbar=not FORCE_TERMINAL,
progressbar=False,
known_hash=None,
)

Expand Down

0 comments on commit f7f16cd

Please sign in to comment.