Skip to content

Commit 93a8fb6

Browse files
committed
fix installation
1 parent 98f613c commit 93a8fb6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/pipeline.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Pip check
3434
shell: bash -l {0}
3535
run: |
36-
pip install -e python_workflow_definition
36+
pip install --no-deps --no-build-isolation -e python_workflow_definition
3737
pip check
3838
3939
nfdi4ing:
@@ -49,7 +49,7 @@ jobs:
4949
- name: Installation and setup
5050
shell: bash -l {0}
5151
run: |
52-
pip install -e python_workflow_definition
52+
pip install --no-deps --no-build-isolation -e python_workflow_definition
5353
conda install -c conda-forge jupyter papermill
5454
verdi presto --profile-name pwd
5555
sudo apt-get install -y $(cat binder/apt.txt)
@@ -84,8 +84,8 @@ jobs:
8484
- name: Installation and setup
8585
shell: bash -l {0}
8686
run: |
87-
pip install -e example_workflows/quantum_espresso/qe_xml_parser
88-
pip install -e python_workflow_definition
87+
pip install --no-deps --no-build-isolation -e example_workflows/quantum_espresso/qe_xml_parser
88+
pip install --no-deps --no-build-isolation -e python_workflow_definition
8989
conda install -c conda-forge jupyter papermill
9090
verdi presto --profile-name pwd
9191
- name: Tests
@@ -112,7 +112,7 @@ jobs:
112112
- name: Installation and setup
113113
shell: bash -l {0}
114114
run: |
115-
pip install -e python_workflow_definition
115+
pip install --no-deps --no-build-isolation -e python_workflow_definition
116116
conda install -c conda-forge jupyter papermill
117117
verdi presto --profile-name pwd
118118
- name: Tests

0 commit comments

Comments
 (0)