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.
- {fastgpx-0.2.0 → fastgpx-0.2.1}/PKG-INFO +1 -1
- {fastgpx-0.2.0 → fastgpx-0.2.1}/pyproject.toml +1 -1
- {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/CMakeLists.txt +1 -1
- {fastgpx-0.2.0 → fastgpx-0.2.1}/.clang-format +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/.gitignore +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/.python-version +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/CMakeLists.txt +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/CMakeSettings.json +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/Development.md +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/GPX.md +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/LICENSE.md +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/README.md +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/benchmarks/benchmark_gpx.py +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/benchmarks/benchmark_polyline.py +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/benchmarks/gpx_parse.md +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/catch2.py +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/coverage.bat +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/datetime.md +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/docs/Makefile +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/docs/make.bat +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/docs/source/api.rst +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/docs/source/conf.py +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/docs/source/index.rst +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/docs/source/overview.rst +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/profiling/profile_polyline.py +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/pytest.ini +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/app.cpp +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/expected_gpx_data.json +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/datetime.cpp +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/datetime.hpp +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/datetime_test.cpp +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/errors.cpp +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/errors.hpp +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/errors_test.cpp +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/fastgpx.cpp +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/fastgpx.hpp +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/fastgpx_test.cpp +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/filesystem.cpp +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/filesystem.hpp +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/filesystem_test.cpp +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/geom.cpp +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/geom.hpp +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/geom_test.cpp +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/polyline.cpp +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/polyline.hpp +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/test_data.cpp +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/test_data.hpp +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/test_data.json +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/fastgpx/test_data_test.cpp +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/python_fastgpx.cpp +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/src/cpp/python_utc_chrono.hpp +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/src/fastgpx/__init__.py +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/src/fastgpx/__init__.pyi +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/src/fastgpx/fastgpx/__init__.pyi +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/src/fastgpx/fastgpx/geo.pyi +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/src/fastgpx/fastgpx/polyline.pyi +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/src/fastgpx/py.typed +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/tests/test_bounds.py +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/tests/test_fastgpx.py +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/tests/test_polyline.py +0 -0
- {fastgpx-0.2.0 → fastgpx-0.2.1}/uv.lock +0 -0
@@ -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
|
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
|
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
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|