scgraph 3.2.2__tar.gz → 3.2.3__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 (27) hide show
  1. {scgraph-3.2.2 → scgraph-3.2.3}/PKG-INFO +2 -2
  2. {scgraph-3.2.2 → scgraph-3.2.3}/pyproject.toml +2 -2
  3. {scgraph-3.2.2 → scgraph-3.2.3}/CMakeLists.txt +0 -0
  4. {scgraph-3.2.2 → scgraph-3.2.3}/LICENSE +0 -0
  5. {scgraph-3.2.2 → scgraph-3.2.3}/README.md +0 -0
  6. {scgraph-3.2.2 → scgraph-3.2.3}/build/cp314-cp314-linux_x86_64/CMakeFiles/CheckCXX/CMakeLists.txt +0 -0
  7. {scgraph-3.2.2 → scgraph-3.2.3}/scgraph/__init__.py +0 -0
  8. {scgraph-3.2.2 → scgraph-3.2.3}/scgraph/contraction_hierarchies.py +0 -0
  9. {scgraph-3.2.2 → scgraph-3.2.3}/scgraph/cpp/bindings/graph_bindings.cpp +0 -0
  10. {scgraph-3.2.2 → scgraph-3.2.3}/scgraph/cpp/src/bmssp.hpp +0 -0
  11. {scgraph-3.2.2 → scgraph-3.2.3}/scgraph/cpp/src/contraction_hierarchies.cpp +0 -0
  12. {scgraph-3.2.2 → scgraph-3.2.3}/scgraph/cpp/src/contraction_hierarchies.hpp +0 -0
  13. {scgraph-3.2.2 → scgraph-3.2.3}/scgraph/cpp/src/graph.cpp +0 -0
  14. {scgraph-3.2.2 → scgraph-3.2.3}/scgraph/cpp/src/graph.hpp +0 -0
  15. {scgraph-3.2.2 → scgraph-3.2.3}/scgraph/cpp/src/graph_utils.cpp +0 -0
  16. {scgraph-3.2.2 → scgraph-3.2.3}/scgraph/cpp/src/graph_utils.hpp +0 -0
  17. {scgraph-3.2.2 → scgraph-3.2.3}/scgraph/cpp/src/transit_node_routing.cpp +0 -0
  18. {scgraph-3.2.2 → scgraph-3.2.3}/scgraph/cpp/src/transit_node_routing.hpp +0 -0
  19. {scgraph-3.2.2 → scgraph-3.2.3}/scgraph/geograph.py +0 -0
  20. {scgraph-3.2.2 → scgraph-3.2.3}/scgraph/graph.py +0 -0
  21. {scgraph-3.2.2 → scgraph-3.2.3}/scgraph/graph_utils.py +0 -0
  22. {scgraph-3.2.2 → scgraph-3.2.3}/scgraph/grid.py +0 -0
  23. {scgraph-3.2.2 → scgraph-3.2.3}/scgraph/helpers/__init__.py +0 -0
  24. {scgraph-3.2.2 → scgraph-3.2.3}/scgraph/helpers/geojson.py +0 -0
  25. {scgraph-3.2.2 → scgraph-3.2.3}/scgraph/helpers/visvalingam.py +0 -0
  26. {scgraph-3.2.2 → scgraph-3.2.3}/scgraph/transit_node_routing.py +0 -0
  27. {scgraph-3.2.2 → scgraph-3.2.3}/scgraph/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: scgraph
3
- Version: 3.2.2
3
+ Version: 3.2.3
4
4
  Summary: Determine an approximate distance and route between two points on earth.
5
5
  Author-Email: Connor Makowski <conmak@mit.edu>
6
6
  License-Expression: MIT
@@ -11,7 +11,7 @@ Project-URL: Homepage, https://github.com/connor-makowski/scgraph
11
11
  Project-URL: Bug Tracker, https://github.com/connor-makowski/scgraph/issues
12
12
  Project-URL: Documentation, https://connor-makowski.github.io/scgraph/scgraph.html
13
13
  Requires-Python: >=3.10
14
- Requires-Dist: geokdtree==1.2.2
14
+ Requires-Dist: geokdtree==1.2.3
15
15
  Requires-Dist: bmsspy<3.0.0,>=2.2.0
16
16
  Requires-Dist: requests<3.0.0,>=2.32.0
17
17
  Description-Content-Type: text/markdown
@@ -26,7 +26,7 @@ include = [
26
26
 
27
27
  [project]
28
28
  name = "scgraph"
29
- version = "3.2.2"
29
+ version = "3.2.3"
30
30
  description = "Determine an approximate distance and route between two points on earth."
31
31
  authors = [
32
32
  {name="Connor Makowski", email="conmak@mit.edu"}
@@ -39,7 +39,7 @@ classifiers = [
39
39
  "Programming Language :: C++",
40
40
  "Operating System :: OS Independent",
41
41
  ]
42
- dependencies = ["geokdtree==1.2.2","bmsspy>=2.2.0,<3.0.0","requests>=2.32.0,<3.0.0"]
42
+ dependencies = ["geokdtree==1.2.3","bmsspy>=2.2.0,<3.0.0","requests>=2.32.0,<3.0.0"]
43
43
 
44
44
  [project.urls]
45
45
  "Homepage" = "https://github.com/connor-makowski/scgraph"
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