Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,21 @@ jobs:
with:
python-version: ${{ matrix.config.python-version }}

- name: Free disk space
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf /usr/local/lib/android
sudo rm -rf /opt/ghc
docker system prune -af || true

- name: Clean workspace artifacts
run: rm -rf build/ dist/ *.egg-info/ .eggs/

- name: Install Python dependencies
run: |
git submodule update --init --recursive
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install --src deps -r requirements.txt

- name: Build
run: python -m pip install -v .
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/dist/
cmake-build-*
*.egg-info/
src/hloc
deps/

*.npy
*.png
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ In this project, we provide interfaces for various geometric operations on 2D/3D
To install the LIMAP Python package:
```
git submodule update --init --recursive
python -m pip install -r requirements.txt
python -m pip install --src deps -r requirements.txt
python -m pip install -Ive .
```
To double check if the package is successfully installed:
Expand Down
1 change: 1 addition & 0 deletions cmake/FindDependencies.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ endif()
find_package(Boost REQUIRED COMPONENTS
graph
program_options
OPTIONAL_COMPONENTS
system)

# Ceres
Expand Down