File tree 2 files changed +23
-0
lines changed
2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change 47
47
shell : bash
48
48
run : python -m pip install --upgrade pip
49
49
50
+ - name : Setup conda
51
+ uses : s-weigand/setup-conda@v1
52
+ if : runner.os == 'Windows'
53
+ with :
54
+ update-conda : true
55
+ python-version : ${{ matrix.python-version }}
56
+ conda-channels : conda-forge
57
+
58
+ - name : Install libcblas for pdffit on Windows
59
+ shell : bash
60
+ if : runner.os == 'Windows'
61
+ run : conda install -y -c conda-forge libcblas
62
+
50
63
- name : Install Python dependencies
51
64
shell : bash
52
65
run : python -m pip install -r requirements.txt
Original file line number Diff line number Diff line change @@ -33,6 +33,16 @@ Development playground for the new EasyDiffraction API.
33
33
python -c " from pycrysfml import cfml_py_utilities"
34
34
```
35
35
36
+ - Install CBLAS library, required for using the Pair Distribution Function feature.
37
+ This step is required only on Windows.
38
+ ``` bash
39
+ # Install from the conda-forge channel
40
+ conda install libcblas -c conda-forge
41
+
42
+ # Try to import the module
43
+ python -c " import diffpy.pdffit2"
44
+ ```
45
+
36
46
## Testing
37
47
38
48
- Functional tests:
You can’t perform that action at this time.
0 commit comments