r2gg 2.2.5__tar.gz → 2.2.6__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-2.2.5 → r2gg-2.2.6}/PKG-INFO +1 -1
- {r2gg-2.2.5 → r2gg-2.2.6}/r2gg/__about__.py +1 -1
- {r2gg-2.2.5 → r2gg-2.2.6}/r2gg/_subprocess_execution.py +5 -2
- {r2gg-2.2.5 → r2gg-2.2.6}/r2gg.egg-info/PKG-INFO +1 -1
- {r2gg-2.2.5 → r2gg-2.2.6}/LICENSE +0 -0
- {r2gg-2.2.5 → r2gg-2.2.6}/README.md +0 -0
- {r2gg-2.2.5 → r2gg-2.2.6}/r2gg/__init__.py +0 -0
- {r2gg-2.2.5 → r2gg-2.2.6}/r2gg/_configure.py +0 -0
- {r2gg-2.2.5 → r2gg-2.2.6}/r2gg/_file_copier.py +0 -0
- {r2gg-2.2.5 → r2gg-2.2.6}/r2gg/_lua_builder.py +0 -0
- {r2gg-2.2.5 → r2gg-2.2.6}/r2gg/_main.py +0 -0
- {r2gg-2.2.5 → r2gg-2.2.6}/r2gg/_osm_building.py +0 -0
- {r2gg-2.2.5 → r2gg-2.2.6}/r2gg/_osm_to_pbf.py +0 -0
- {r2gg-2.2.5 → r2gg-2.2.6}/r2gg/_output_costs_from_costs_config.py +0 -0
- {r2gg-2.2.5 → r2gg-2.2.6}/r2gg/_path_converter.py +0 -0
- {r2gg-2.2.5 → r2gg-2.2.6}/r2gg/_pivot_to_osm.py +0 -0
- {r2gg-2.2.5 → r2gg-2.2.6}/r2gg/_pivot_to_pgr.py +0 -0
- {r2gg-2.2.5 → r2gg-2.2.6}/r2gg/_read_config.py +0 -0
- {r2gg-2.2.5 → r2gg-2.2.6}/r2gg/_sql_building.py +0 -0
- {r2gg-2.2.5 → r2gg-2.2.6}/r2gg/_valhalla_lua_builder.py +0 -0
- {r2gg-2.2.5 → r2gg-2.2.6}/r2gg/cli.py +0 -0
- {r2gg-2.2.5 → r2gg-2.2.6}/r2gg.egg-info/SOURCES.txt +0 -0
- {r2gg-2.2.5 → r2gg-2.2.6}/r2gg.egg-info/dependency_links.txt +0 -0
- {r2gg-2.2.5 → r2gg-2.2.6}/r2gg.egg-info/entry_points.txt +0 -0
- {r2gg-2.2.5 → r2gg-2.2.6}/r2gg.egg-info/requires.txt +0 -0
- {r2gg-2.2.5 → r2gg-2.2.6}/r2gg.egg-info/top_level.txt +0 -0
- {r2gg-2.2.5 → r2gg-2.2.6}/setup.cfg +0 -0
- {r2gg-2.2.5 → r2gg-2.2.6}/setup.py +0 -0
- {r2gg-2.2.5 → r2gg-2.2.6}/tests/test_cli.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: r2gg
|
|
3
|
-
Version: 2.2.
|
|
3
|
+
Version: 2.2.6
|
|
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__ = "2.2.
|
|
37
|
+
__version__ = "2.2.6"
|
|
38
38
|
__version_info__ = tuple(
|
|
39
39
|
[
|
|
40
40
|
int(num) if num.isdigit() else num
|
|
@@ -33,9 +33,12 @@ def subprocess_execution(args, logger, outfile = None):
|
|
|
33
33
|
process_output, _ = process.communicate()
|
|
34
34
|
logger.info(process_output.decode("utf-8"))
|
|
35
35
|
|
|
36
|
-
|
|
36
|
+
# Wait for process stop
|
|
37
|
+
while process.returncode is None:
|
|
38
|
+
process.wait()
|
|
39
|
+
|
|
37
40
|
if process.returncode != 0:
|
|
38
|
-
error_msg = f"Invalid returncode {returncode} for subprocess '{subprocess_arg}'"
|
|
41
|
+
error_msg = f"Invalid returncode {process.returncode} for subprocess '{subprocess_arg}'"
|
|
39
42
|
logger.error(error_msg)
|
|
40
43
|
raise RuntimeError(error_msg)
|
|
41
44
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: r2gg
|
|
3
|
-
Version: 2.2.
|
|
3
|
+
Version: 2.2.6
|
|
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
|