Skip to content

Commit cdf7945

Browse files
Merge pull request mala-project#661 from RandomDefaultUser/rename_install_folder
Renamed "install" to "pipeline"
2 parents 91a7ecc + 85cfc88 commit cdf7945

8 files changed

Lines changed: 4 additions & 4 deletions

File tree

.dockerignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
*
2-
!install/*
2+
!pipeline/*

.github/workflows/cpu-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ jobs:
183183
# be there before it has been installed.
184184
sed -i '/materials-learning-algorithms/d' ./env_after.yml
185185
186-
# if comparison fails, `install/mala_cpu_[base]_environment.yml` needs to be aligned with
186+
# if comparison fails, `pipeline/mala_cpu_[base]_environment.yml` needs to be aligned with
187187
# `requirements.txt` and/or extra dependencies are missing in the Docker Conda environment
188188
189189
if diff --brief env_before.yml env_after.yml

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ RUN apt-get --allow-releaseinfo-change update && apt-get upgrade -y && \
1414

1515
# Choose 'cpu' or 'gpu'
1616
ARG DEVICE=cpu
17-
COPY install/mala_${DEVICE}_environment.yml .
17+
COPY pipeline/mala_${DEVICE}_environment.yml .
1818
RUN conda env create -f mala_${DEVICE}_environment.yml && rm -rf /opt/conda/pkgs/*
1919

2020
# Install optional MALA dependencies into Conda environment with pip

docs/source/CONTRIBUTE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ If you add additional dependencies, make sure to add them to `requirements.txt`
116116
if they are required or to `setup.py` under the appropriate `extras` tag if
117117
they are not.
118118
Further, in order for them to be available during the CI tests, make sure to
119-
add _required_ dependencies to the appropriate environment files in folder `install/` and _extra_ requirements directly in the `Dockerfile` for the `conda` environment build.
119+
add _required_ dependencies to the appropriate environment files in folder `pipeline/` and _extra_ requirements directly in the `Dockerfile` for the `conda` environment build.
120120

121121
## Pull Requests
122122
We actively welcome pull requests.

0 commit comments

Comments
 (0)