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.
Files changed (30) hide show
  1. {r2gg-3.1.4 → r2gg-3.1.5}/PKG-INFO +1 -1
  2. {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/__about__.py +1 -1
  3. {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/_database.py +1 -1
  4. {r2gg-3.1.4 → r2gg-3.1.5}/r2gg.egg-info/PKG-INFO +1 -1
  5. {r2gg-3.1.4 → r2gg-3.1.5}/LICENSE +0 -0
  6. {r2gg-3.1.4 → r2gg-3.1.5}/README.md +0 -0
  7. {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/__init__.py +0 -0
  8. {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/_configure.py +0 -0
  9. {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/_file_copier.py +0 -0
  10. {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/_lua_builder.py +0 -0
  11. {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/_main.py +0 -0
  12. {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/_osm_building.py +0 -0
  13. {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/_osm_to_pbf.py +0 -0
  14. {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/_output_costs_from_costs_config.py +0 -0
  15. {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/_path_converter.py +0 -0
  16. {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/_pivot_to_osm.py +0 -0
  17. {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/_pivot_to_pgr.py +0 -0
  18. {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/_read_config.py +0 -0
  19. {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/_sql_building.py +0 -0
  20. {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/_subprocess_execution.py +0 -0
  21. {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/_valhalla_lua_builder.py +0 -0
  22. {r2gg-3.1.4 → r2gg-3.1.5}/r2gg/cli.py +0 -0
  23. {r2gg-3.1.4 → r2gg-3.1.5}/r2gg.egg-info/SOURCES.txt +0 -0
  24. {r2gg-3.1.4 → r2gg-3.1.5}/r2gg.egg-info/dependency_links.txt +0 -0
  25. {r2gg-3.1.4 → r2gg-3.1.5}/r2gg.egg-info/entry_points.txt +0 -0
  26. {r2gg-3.1.4 → r2gg-3.1.5}/r2gg.egg-info/requires.txt +0 -0
  27. {r2gg-3.1.4 → r2gg-3.1.5}/r2gg.egg-info/top_level.txt +0 -0
  28. {r2gg-3.1.4 → r2gg-3.1.5}/setup.cfg +0 -0
  29. {r2gg-3.1.4 → r2gg-3.1.5}/setup.py +0 -0
  30. {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.4
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.4"
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
- return
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.4
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