fastgpx 0.2.0__tar.gz → 0.2.1__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 (61) hide show
  1. {fastgpx-0.2.0 → fastgpx-0.2.1}/PKG-INFO +1 -1
  2. {fastgpx-0.2.0 → fastgpx-0.2.1}/pyproject.toml +1 -1
  3. {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/CMakeLists.txt +1 -1
  4. {fastgpx-0.2.0 → fastgpx-0.2.1}/.clang-format +0 -0
  5. {fastgpx-0.2.0 → fastgpx-0.2.1}/.gitignore +0 -0
  6. {fastgpx-0.2.0 → fastgpx-0.2.1}/.python-version +0 -0
  7. {fastgpx-0.2.0 → fastgpx-0.2.1}/CMakeLists.txt +0 -0
  8. {fastgpx-0.2.0 → fastgpx-0.2.1}/CMakeSettings.json +0 -0
  9. {fastgpx-0.2.0 → fastgpx-0.2.1}/Development.md +0 -0
  10. {fastgpx-0.2.0 → fastgpx-0.2.1}/GPX.md +0 -0
  11. {fastgpx-0.2.0 → fastgpx-0.2.1}/LICENSE.md +0 -0
  12. {fastgpx-0.2.0 → fastgpx-0.2.1}/README.md +0 -0
  13. {fastgpx-0.2.0 → fastgpx-0.2.1}/benchmarks/benchmark_gpx.py +0 -0
  14. {fastgpx-0.2.0 → fastgpx-0.2.1}/benchmarks/benchmark_polyline.py +0 -0
  15. {fastgpx-0.2.0 → fastgpx-0.2.1}/benchmarks/gpx_parse.md +0 -0
  16. {fastgpx-0.2.0 → fastgpx-0.2.1}/catch2.py +0 -0
  17. {fastgpx-0.2.0 → fastgpx-0.2.1}/coverage.bat +0 -0
  18. {fastgpx-0.2.0 → fastgpx-0.2.1}/datetime.md +0 -0
  19. {fastgpx-0.2.0 → fastgpx-0.2.1}/docs/Makefile +0 -0
  20. {fastgpx-0.2.0 → fastgpx-0.2.1}/docs/make.bat +0 -0
  21. {fastgpx-0.2.0 → fastgpx-0.2.1}/docs/source/api.rst +0 -0
  22. {fastgpx-0.2.0 → fastgpx-0.2.1}/docs/source/conf.py +0 -0
  23. {fastgpx-0.2.0 → fastgpx-0.2.1}/docs/source/index.rst +0 -0
  24. {fastgpx-0.2.0 → fastgpx-0.2.1}/docs/source/overview.rst +0 -0
  25. {fastgpx-0.2.0 → fastgpx-0.2.1}/profiling/profile_polyline.py +0 -0
  26. {fastgpx-0.2.0 → fastgpx-0.2.1}/pytest.ini +0 -0
  27. {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/app.cpp +0 -0
  28. {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/expected_gpx_data.json +0 -0
  29. {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/datetime.cpp +0 -0
  30. {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/datetime.hpp +0 -0
  31. {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/datetime_test.cpp +0 -0
  32. {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/errors.cpp +0 -0
  33. {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/errors.hpp +0 -0
  34. {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/errors_test.cpp +0 -0
  35. {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/fastgpx.cpp +0 -0
  36. {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/fastgpx.hpp +0 -0
  37. {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/fastgpx_test.cpp +0 -0
  38. {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/filesystem.cpp +0 -0
  39. {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/filesystem.hpp +0 -0
  40. {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/filesystem_test.cpp +0 -0
  41. {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/geom.cpp +0 -0
  42. {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/geom.hpp +0 -0
  43. {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/geom_test.cpp +0 -0
  44. {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/polyline.cpp +0 -0
  45. {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/polyline.hpp +0 -0
  46. {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/test_data.cpp +0 -0
  47. {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/test_data.hpp +0 -0
  48. {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/test_data.json +0 -0
  49. {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/test_data_test.cpp +0 -0
  50. {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/python_fastgpx.cpp +0 -0
  51. {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/python_utc_chrono.hpp +0 -0
  52. {fastgpx-0.2.0 → fastgpx-0.2.1}/src/fastgpx/__init__.py +0 -0
  53. {fastgpx-0.2.0 → fastgpx-0.2.1}/src/fastgpx/__init__.pyi +0 -0
  54. {fastgpx-0.2.0 → fastgpx-0.2.1}/src/fastgpx/fastgpx/__init__.pyi +0 -0
  55. {fastgpx-0.2.0 → fastgpx-0.2.1}/src/fastgpx/fastgpx/geo.pyi +0 -0
  56. {fastgpx-0.2.0 → fastgpx-0.2.1}/src/fastgpx/fastgpx/polyline.pyi +0 -0
  57. {fastgpx-0.2.0 → fastgpx-0.2.1}/src/fastgpx/py.typed +0 -0
  58. {fastgpx-0.2.0 → fastgpx-0.2.1}/tests/test_bounds.py +0 -0
  59. {fastgpx-0.2.0 → fastgpx-0.2.1}/tests/test_fastgpx.py +0 -0
  60. {fastgpx-0.2.0 → fastgpx-0.2.1}/tests/test_polyline.py +0 -0
  61. {fastgpx-0.2.0 → fastgpx-0.2.1}/uv.lock +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fastgpx
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: An experimental Python library for parsing GPX files fast.
5
5
  Keywords: gpx,parser,fast
6
6
  Author: Thomas Thomassen
@@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
4
4
 
5
5
  [project]
6
6
  name = "fastgpx"
7
- version = "0.2.0"
7
+ version = "0.2.1"
8
8
  requires-python = ">=3.11"
9
9
 
10
10
  description = "An experimental Python library for parsing GPX files fast."
@@ -97,7 +97,7 @@ set_target_properties(fastgpx-static PROPERTIES
97
97
 
98
98
  # fastgpx python module
99
99
 
100
- find_package(Python3 3.11 EXACT REQUIRED COMPONENTS Interpreter Development)
100
+ find_package(Python3 3.11 REQUIRED COMPONENTS Interpreter Development)
101
101
 
102
102
  set(PYBIND11_NEWPYTHON ON)
103
103
  find_package(pybind11 CONFIG REQUIRED)
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