Skip to content

Commit

Permalink
Revert "MAINT: Install kim-convergence package from pypi"
Browse files Browse the repository at this point in the history
This reverts commit 5e2724a.

After consulting with the developer of the convergence package, the
version of it released on PyPI includes a backwards-incompatible API and
is not compatible with the current version of the
DislocationCoreEnergyCubic driver.  Once the driver has been updated to
work with the PyPI release, it will be installed in the KIM developer
platform.
  • Loading branch information
dskarls committed Aug 9, 2021
1 parent b260c49 commit 1720c8e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion docker/install/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ ARG PACKAGE_DIR=/pipeline/packages/
# Copy packages fetched via git
COPY --from=git ${PACKAGE_DIR} ${PACKAGE_DIR}

# Copy static local packages
COPY packages/convergence.txz ${PACKAGE_DIR}

# Symlinks
RUN if [ ! -f "/usr/bin/python" ]; then \
ln -fs /usr/bin/python3 /usr/bin/python; \
Expand All @@ -44,7 +47,6 @@ RUN ${PIP} install matplotlib==3.3.4
RUN ${PIP} install pymongo==3.11.3
RUN ${PIP} install montydb==2.1.1
RUN ${PIP} install pybind11==2.6.2
RUN ${PIP} install kim-convergence==0.0.2

#########################################
## MD++
Expand Down Expand Up @@ -148,3 +150,11 @@ RUN cd ${PACKAGE_DIR}/ase/ \
RUN cd ${PACKAGE_DIR}/kim-python-utils \
&& ${PIP} install .

#########################################
## convergence
#########################################
RUN cd ${PACKAGE_DIR} \
&& tar xJf convergence.txz \
&& rm convergence.txz \
&& cd convergence \
&& ${PIP} install .
Binary file added docker/install/packages/convergence.txz
Binary file not shown.

0 comments on commit 1720c8e

Please sign in to comment.