r2gg 3.1.4__tar.gz → 3.1.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {r2gg-3.1.4 → r2gg-3.1.5}/PKG-INFO +1 -1
- {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/__about__.py +1 -1
- {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/_database.py +1 -1
- {r2gg-3.1.4 → r2gg-3.1.5}/r2gg.egg-info/PKG-INFO +1 -1
- {r2gg-3.1.4 → r2gg-3.1.5}/LICENSE +0 -0
- {r2gg-3.1.4 → r2gg-3.1.5}/README.md +0 -0
- {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/__init__.py +0 -0
- {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/_configure.py +0 -0
- {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/_file_copier.py +0 -0
- {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/_lua_builder.py +0 -0
- {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/_main.py +0 -0
- {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/_osm_building.py +0 -0
- {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/_osm_to_pbf.py +0 -0
- {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/_output_costs_from_costs_config.py +0 -0
- {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/_path_converter.py +0 -0
- {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/_pivot_to_osm.py +0 -0
- {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/_pivot_to_pgr.py +0 -0
- {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/_read_config.py +0 -0
- {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/_sql_building.py +0 -0
- {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/_subprocess_execution.py +0 -0
- {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/_valhalla_lua_builder.py +0 -0
- {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/cli.py +0 -0
- {r2gg-3.1.4 → r2gg-3.1.5}/r2gg.egg-info/SOURCES.txt +0 -0
- {r2gg-3.1.4 → r2gg-3.1.5}/r2gg.egg-info/dependency_links.txt +0 -0
- {r2gg-3.1.4 → r2gg-3.1.5}/r2gg.egg-info/entry_points.txt +0 -0
- {r2gg-3.1.4 → r2gg-3.1.5}/r2gg.egg-info/requires.txt +0 -0
- {r2gg-3.1.4 → r2gg-3.1.5}/r2gg.egg-info/top_level.txt +0 -0
- {r2gg-3.1.4 → r2gg-3.1.5}/setup.cfg +0 -0
- {r2gg-3.1.4 → r2gg-3.1.5}/setup.py +0 -0
- {r2gg-3.1.4 → r2gg-3.1.5}/tests/test_cli.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: r2gg
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.5
|
|
4
4
|
Summary: Route Graph Generator (r2gg) est un script Python qui permet la génération de graphes pour des moteurs de calcul d'itinéraire
|
|
5
5
|
Home-page: https://github.com/IGNF/route-graph-generator/
|
|
6
6
|
Author: IGNF
|
|
@@ -34,7 +34,7 @@ __uri_repository__ = "https://github.com/IGNF/route-graph-generator/"
|
|
|
34
34
|
__uri_tracker__ = f"{__uri_repository__}issues/"
|
|
35
35
|
__uri__ = __uri_repository__
|
|
36
36
|
|
|
37
|
-
__version__ = "3.1.
|
|
37
|
+
__version__ = "3.1.5"
|
|
38
38
|
__version_info__ = tuple(
|
|
39
39
|
[
|
|
40
40
|
int(num) if num.isdigit() else num
|
|
@@ -23,7 +23,7 @@ def database_retry_decorator(func):
|
|
|
23
23
|
except (OperationalError, DatabaseError, InterfaceError) as e:
|
|
24
24
|
if attempt >= RETRY:
|
|
25
25
|
self.logger.error(f"Query failed after {RETRY} attempts: {str(e).rstrip()}")
|
|
26
|
-
|
|
26
|
+
raise e
|
|
27
27
|
|
|
28
28
|
self.logger.error(
|
|
29
29
|
f"Attempt {attempt}/{RETRY} failed ({str(e).rstrip()}), retrying in {DELAY} seconds"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: r2gg
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.5
|
|
4
4
|
Summary: Route Graph Generator (r2gg) est un script Python qui permet la génération de graphes pour des moteurs de calcul d'itinéraire
|
|
5
5
|
Home-page: https://github.com/IGNF/route-graph-generator/
|
|
6
6
|
Author: IGNF
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|