Skip to content

Commit

Permalink
#7: Missing python imports
Browse files Browse the repository at this point in the history
  • Loading branch information
maxime-bfsquall committed Sep 26, 2024
1 parent 6e5a558 commit b336f99
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ci/docker/build-and-test-ubuntu.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ FROM ${BASE_IMAGE} AS base
ENV CONDA_PATH=/opt/conda
ENV PATH=$PATH:$CONDA_PATH/bin

# Setup python requirements for JSON datafile validation
RUN pip install PyYAML
RUN pip install Brotli
RUN pip install schema
RUN pip install nanobind

COPY . /opt/src/vt-tv
RUN mkdir -p /opt/build/vt-tv

Expand Down
3 changes: 3 additions & 0 deletions ci/python_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ for env in $(conda env list | grep ^py | perl -lane 'print $F[-1]' | xargs ls -l

# Build VT-TV python package
pip install PyYAML
pip install Brotli
pip install schema
pip install nanobind
pip install $VT_TV_SRC_DIR

# Deactivate conda environment
Expand Down

0 comments on commit b336f99

Please sign in to comment.