Skip to content

Commit

Permalink
Merge pull request #87 from open-space-collective/users/remy/pybind11
Browse files Browse the repository at this point in the history
Fixes to CI pipeline for Pybind11 bindings and multiple python versions support
  • Loading branch information
Derollez authored Feb 5, 2021
2 parents ca1e8e6 + 1200a64 commit 9d5ae4b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -202,9 +202,9 @@ build-release-image-jupyter: pull-release-image-jupyter
--build-arg="JUPYTER_NOTEBOOK_IMAGE_REPOSITORY=$(jupyter_notebook_image_repository)" \
"$(project_directory)/docker/jupyter"

build-documentation: target := debian ## Build documentation
build-documentation: target := debian

build-documentation: _build-development-image
build-documentation: _build-development-image ## Build documentation

@ echo "Building [$(target)] documentation..."

Expand Down
6 changes: 4 additions & 2 deletions docker/release/fedora/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ FROM fedora:32 as python-builder

COPY --from=cpp-builder /app/build/bindings/python/dist /dist

RUN python3.8 -m pip install /dist/*38*.whl
RUN python3.8 -m ensurepip --default-pip \
&& python3.8 -m pip install /dist/*38*.whl

################################################################################################################################################################

Expand All @@ -61,7 +62,8 @@ LABEL maintainer="[email protected]"

RUN ln -s /usr/bin/pip3 /usr/bin/pip

RUN pip install ipython
RUN python3.8 -m ensurepip --default-pip \
&& python3.8 -m pip install ipython

COPY --from=python-builder /usr/local/lib/python3.8/site-packages/ostk /usr/local/lib/python3.8/site-packages/ostk

Expand Down

0 comments on commit 9d5ae4b

Please sign in to comment.