Skip to content

Commit

Permalink
remove feature in tree
Browse files Browse the repository at this point in the history
  • Loading branch information
kannon92 committed Jul 25, 2023
1 parent c6a16d7 commit fec4f06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 18 deletions.
10 changes: 1 addition & 9 deletions build/airflow-operator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 1 addition & 9 deletions build/python-client/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fec4f06

Please sign in to comment.