File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed
Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -113,6 +113,7 @@ jobs:
113113 run : |
114114 vcpkg_installed/${{ matrix.triplet }}/tools/python3/${{ matrix.python }} -m ensurepip --upgrade
115115 vcpkg_installed/${{ matrix.triplet }}/tools/python3/${{ matrix.python }} -m pip install -r python/dev_requirements.txt
116+ vcpkg_installed/${{ matrix.triplet }}/tools/python3/${{ matrix.python }} -c "import pyparsing"
116117
117118 - name : Set Swap Space (Linux)
118119 if : runner.os == 'Linux'
@@ -155,9 +156,7 @@ jobs:
155156 CMAKE_CXX_COMPILER_LAUNCHER : sccache
156157
157158 - name : cmake build
158- shell : bash
159- run : |
160- cmake --build build --config ${{ matrix.build_type }}
159+ run : cmake --build build
161160
162161 - name : Run Python tests
163162 shell : bash
Original file line number Diff line number Diff line change 66 **/
77
88#include " PseudorangeFactor.h"
9-
9+ #ifdef __GNUC__
10+ #pragma GCC diagnostic ignored "-Warray-bounds"
11+ #endif
1012namespace {
1113
1214// / Speed of light in a vacuum (m/s):
Original file line number Diff line number Diff line change 88# pylint: disable=import-error
99
1010import argparse
11-
11+ import site
12+ print (site .PREFIXES )
1213from gtwrap .pybind_wrapper import PybindWrapper
1314
1415
You can’t perform that action at this time.
0 commit comments