Skip to content

Commit 50617fa

Browse files
authored
Merge pull request #75 from Tieqiong/buildwf
fix the failing workflow
2 parents e34ee02 + b702d73 commit 50617fa

4 files changed

Lines changed: 7 additions & 4 deletions

File tree

.github/workflows/codecov.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,9 @@ jobs:
3838
run: |
3939
conda install --file requirements/run.txt
4040
conda install --file requirements/test.txt
41+
conda install --file requirements/build.txt
4142
python -m pip install -r requirements/pip.txt
42-
python -m pip install . --no-deps
43+
python -m pip install -e . --no-deps
4344
4445
- name: Validate diffpy.pdffit2
4546
run: |

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
conda install --file requirements/run.txt
3737
conda install --file requirements/docs.txt
3838
python -m pip install -r requirements/pip.txt
39-
python -m pip install . --no-deps
39+
python -m pip install -e . --no-deps
4040
4141
- name: build documents
4242
run: make -C doc html

.github/workflows/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,9 @@ jobs:
3535
run: |
3636
conda install --file requirements/run.txt
3737
conda install --file requirements/test.txt
38+
conda install --file requirements/build.txt
3839
python -m pip install -r requirements/pip.txt
39-
python -m pip install . --no-deps
40+
python -m pip install -e . --no-deps
4041
4142
- name: Validate diffpy.pdffit2
4243
run: python -m pytest

.github/workflows/matrix.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,9 @@ jobs:
4040
run: |
4141
conda install --file requirements/run.txt
4242
conda install --file requirements/test.txt
43+
conda install --file requirements/build.txt
4344
python -m pip install -r requirements/pip.txt
44-
python -m pip install . --no-deps
45+
python -m pip install -e . --no-deps
4546
4647
- name: Validate diffpy.pdffit2
4748
run: python -m pytest

0 commit comments

Comments
 (0)