Skip to content
Open
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
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"dockerfile": "../Dockerfile",
"context": ".."
},
"postCreateCommand": "pip install -e '.[doc,dev]'",
"postCreateCommand": "pip install -e '.[nautical,doc,dev]'",
"customizations": {
"vscode": {
"extensions": [
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -285,5 +285,6 @@ examples/**/*.npz
examples/**/*.gif
examples/**/*.mp4
examples/**/*.pdf
examples/cofi-exports/**
examples/cofi/cofi-exports/**
examples/cofi/data/**
examples/coco/data/**
7 changes: 2 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
# If not, see https://opensource.org/license/bsd-3-clause/.
#

FROM ubuntu:22.04
FROM ubuntu:26.04

# APT installs and settings
RUN apt-get update -qq
RUN apt-get install -qy git curl xz-utils python3-pip python3-gdal libgdal-dev cython3
RUN apt-get install -qy git curl xz-utils python3-pip python3-gdal

# Locales settings for Sphinx to work
RUN apt-get install -qy locales
Expand All @@ -19,9 +19,6 @@ RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && loca
# Git and pip setup
ENV PIP_BREAK_SYSTEM_PACKAGES=1

# Install optional debug/dev tools and dependencies
RUN pip install graphviz

# Get clone of repository and install with a reasoning backend
RUN git clone https://github.com/HRI-EU/ProMis.git
WORKDIR /ProMis
Expand Down
2 changes: 1 addition & 1 deletion doc/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ ProMis requires Python 3.10 or newer. You can download it from `python.org <http

# Ubuntu / Debian
sudo apt-get update
sudo apt-get install python3-gdal libgdal-dev
sudo apt-get install python3-gdal

# macOS (using Homebrew)
brew install gdal
Expand Down
Loading