From fec4f0650d39ef3330a9acf868cd7649d2aae138 Mon Sep 17 00:00:00 2001 From: kannon92 Date: Tue, 25 Jul 2023 13:42:27 +0000 Subject: [PATCH] remove feature in tree --- build/airflow-operator/Dockerfile | 10 +--------- build/python-client/Dockerfile | 10 +--------- 2 files changed, 2 insertions(+), 18 deletions(-) diff --git a/build/airflow-operator/Dockerfile b/build/airflow-operator/Dockerfile index 2feb89d85b7..ab45c98c845 100644 --- a/build/airflow-operator/Dockerfile +++ b/build/airflow-operator/Dockerfile @@ -6,15 +6,7 @@ RUN mkdir /proto COPY third_party/airflow/pyproject.toml /code/pyproject.toml -# Note that --use-feature=in-tree-build is needed until pip 21.3 -# (https://github.com/libAtoms/QUIP/issues/345) -# -# To make sure that the workdir is not changed (This might break something in the future), -# We pip install from /code -# -# Then to install the `test` optional dependencies, we pip install from /code[test] -# See https://stackoverflow.com/questions/46775346/what-do-square-brackets-mean-in-pip-install -RUN pip install "/code[test]" --use-feature=in-tree-build +RUN pip install "/code[test]" # Creating folders, and files for a project: COPY third_party/airflow /code diff --git a/build/python-client/Dockerfile b/build/python-client/Dockerfile index e47c648d491..1993d47da3b 100644 --- a/build/python-client/Dockerfile +++ b/build/python-client/Dockerfile @@ -6,15 +6,7 @@ RUN mkdir /proto COPY client/python/pyproject.toml /code/pyproject.toml -# Note that --use-feature=in-tree-build is needed until pip 21.3 -# (https://github.com/libAtoms/QUIP/issues/345) -# -# To make sure that the workdir is not changed (This might break something in the future), -# We pip install from /code -# -# Then to install the `test` optional dependencies, we pip install from /code[test] -# See https://stackoverflow.com/questions/46775346/what-do-square-brackets-mean-in-pip-install -RUN pip install "/code[test]" --use-feature=in-tree-build +RUN pip install "/code[test]" # Creating folders, and files for a project: COPY client/python /code