Merge branch 'master' into devel
epsi-builds/msspec_python3/pipeline/head This commit looks good
Details
epsi-builds/msspec_python3/pipeline/head This commit looks good
Details
This commit is contained in:
commit
ec0fc248ce
|
@ -13,7 +13,7 @@ RUN mkdir -p /opt/msspec/code
|
||||||
WORKDIR /opt/msspec/code
|
WORKDIR /opt/msspec/code
|
||||||
|
|
||||||
# Fetch the code
|
# Fetch the code
|
||||||
RUN git clone --branch devel https://git.ipr.univ-rennes1.fr/epsi/msspec_python3.git .
|
RUN git clone https://git.ipr.univ-rennes1.fr/epsi/msspec_python3.git .
|
||||||
#COPY --chown=msspec:msspec . .
|
#COPY --chown=msspec:msspec . .
|
||||||
|
|
||||||
# Install msspec
|
# Install msspec
|
||||||
|
|
7
Makefile
7
Makefile
|
@ -11,7 +11,12 @@ pybinding:
|
||||||
venv:
|
venv:
|
||||||
ifeq ($(NO_VENV),0)
|
ifeq ($(NO_VENV),0)
|
||||||
@virtualenv --python=$(PYTHON_EXE) --prompt="(msspec-$(VERSION)) " $(VENV_PATH)
|
@virtualenv --python=$(PYTHON_EXE) --prompt="(msspec-$(VERSION)) " $(VENV_PATH)
|
||||||
$(INSIDE_VENV) wget https://bootstrap.pypa.io/get-pip.py && python get-pip.py && pip install -r src/pip.freeze && rm -f get-pip.py
|
$(INSIDE_VENV) \
|
||||||
|
wget https://bootstrap.pypa.io/get-pip.py && \
|
||||||
|
python get-pip.py && \
|
||||||
|
pip install --upgrade setuptools && \
|
||||||
|
pip install -r src/pip.freeze && \
|
||||||
|
rm -f get-pip.py
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue