We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 522c561 commit ac32634Copy full SHA for ac32634
1 file changed
.github/workflows/test-pdf-pack.yml
@@ -22,9 +22,12 @@ jobs:
22
with:
23
python-version: ${{ matrix.python-version }}
24
channels: conda-forge
25
- - name: Install diffpy.cmi
+ - name: Install diffpy.cmi and dependencies
26
run: |
27
conda install -y diffpy.cmi
28
+ for file in requirements/packs/*.txt; do
29
+ xargs -a "$file" conda install -y -c conda-forge
30
+ done
31
- name: Run diffpy.cmi scripts from docs/examples
32
shell: bash
33
@@ -51,6 +54,14 @@ jobs:
51
54
52
55
python -m pip install --upgrade pip
53
56
pip install diffpy.cmi
57
+
58
+ - name: Install diffpy.cmi and dependencies (pip)
59
+ run: |
60
+ python -m pip install --upgrade pip
61
+ pip install diffpy.cmi
62
63
+ pip install -r "$file"
64
65
66
67
0 commit comments