scisoftdev-tmp-HiPOP 1.0.2__tar.gz → 1.0.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 (48) hide show
  1. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/.github/workflows/deploy.yaml +3 -5
  2. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/PKG-INFO +1 -1
  3. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/pyproject.toml +1 -1
  4. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/.github/workflows/ci.yaml +0 -0
  5. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/.gitignore +0 -0
  6. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/CMakeLists.txt +0 -0
  7. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/LICENSE +0 -0
  8. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/README.md +0 -0
  9. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/bump_version.py +0 -0
  10. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/conda/env.yaml +0 -0
  11. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/conda/recipe/README.md +0 -0
  12. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/conda/recipe/build-hipoplib.sh +0 -0
  13. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/conda/recipe/meta.yaml +0 -0
  14. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/cpp/CMakeLists.txt +0 -0
  15. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/cpp/cmake/HipopConfig.cmake.in +0 -0
  16. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/cpp/examples/CMakeLists.txt +0 -0
  17. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/cpp/examples/ParallelKShortestPath.cpp +0 -0
  18. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/cpp/include/hipop/create.h +0 -0
  19. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/cpp/include/hipop/graph.h +0 -0
  20. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/cpp/include/hipop/shortest_path.h +0 -0
  21. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/cpp/src/create.cpp +0 -0
  22. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/cpp/src/graph.cpp +0 -0
  23. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/cpp/src/shortest_path.cpp +0 -0
  24. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/cpp/tests/CMakeLists.txt +0 -0
  25. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/cpp/tests/helpers.h +0 -0
  26. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/cpp/tests/testCopyGraph.cpp +0 -0
  27. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/cpp/tests/testDijkstra1.cpp +0 -0
  28. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/cpp/tests/testDijkstra2.cpp +0 -0
  29. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/cpp/tests/testGraph.cpp +0 -0
  30. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/cpp/tests/testGraphMerge.cpp +0 -0
  31. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/cpp/tests/testKShortestPath.cpp +0 -0
  32. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/cpp/tests/testManhattan.cpp +0 -0
  33. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/cpp/tests/testYenKShortestPath.cpp +0 -0
  34. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/cpp/tests/testparallelKShortestPath.cpp +0 -0
  35. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/pytest.toml +0 -0
  36. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/python/CMakeLists.txt +0 -0
  37. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/python/examples/UpdateCosts.py +0 -0
  38. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/python/examples/ksp.py +0 -0
  39. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/python/examples/merge.py +0 -0
  40. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/python/examples/test.py +0 -0
  41. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/python/hipop/__init__.py +0 -0
  42. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/python/hipop/cpp/graph.cpp +0 -0
  43. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/python/hipop/cpp/main.cpp +0 -0
  44. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/python/hipop/cpp/shortest_path.cpp +0 -0
  45. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/python/hipop/graph.py +0 -0
  46. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/python/hipop/render.py +0 -0
  47. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/python/hipop/shortest_path.py +0 -0
  48. {scisoftdev_tmp_hipop-1.0.2 → scisoftdev_tmp_hipop-1.0.3}/python/tests/test_Graph.py +0 -0
@@ -2,9 +2,7 @@ name: Deploy to PyPI
2
2
 
3
3
  on:
4
4
  push:
5
- branches:
6
- - 'feature/**' # TODO remove feature/* once the workflow is stable
7
- # TODO define the trigger with EMobLab once the workflow is stable
5
+ workflow_dispatch: # TODO define the trigger with EMobLab once the workflow is stable
8
6
 
9
7
  jobs:
10
8
 
@@ -17,8 +15,8 @@ jobs:
17
15
  matrix:
18
16
  os: # See https://docs.github.com/en/actions/reference/runners/github-hosted-runners
19
17
  - ubuntu-latest # Arch: x64
20
- # TODO re-enable - windows-latest # Arch: x64
21
- # TODO re-enable - macos-14 # Arch: arm64
18
+ - windows-latest # Arch: x64
19
+ - macos-14 # Arch: arm64
22
20
  # Do not use the latest macOS runner to ensure backward compatibility.
23
21
  # See comment on MACOSX_DEPLOYMENT_TARGET in pyproject.toml for more details.
24
22
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: scisoftdev-tmp-HiPOP
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: High Performance Optimal Path module
5
5
  License-Expression: LGPL-3.0-only
6
6
  License-File: LICENSE
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "scisoftdev-tmp-HiPOP" # TODO Project name modified to test deployment, to restore.
3
- version = "1.0.2" # TODO Project version modified to test deployment, to restore.
3
+ version = "1.0.3" # TODO Project version modified to test deployment, to restore.
4
4
  description = "High Performance Optimal Path module"
5
5
  readme = "README.md"
6
6
  requires-python = ">= 3.10"