File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 5
5
branches :
6
6
- main
7
7
- CI
8
+ - cookie
8
9
pull_request :
9
10
workflow_dispatch :
10
11
15
16
strategy :
16
17
matrix :
17
18
python-version : ['3.10', '3.11', '3.12']
18
- os : ["ubuntu-latest", "windows-latest"]
19
+ os : ["macos-latest", " ubuntu-latest", "windows-latest"]
19
20
steps :
20
21
- name : check out diffpy.pdffit2
21
22
uses : actions/checkout@v3
34
35
# environment.yml file is needed by this action. Because I don't want
35
36
# maintain this but rather maintain the requirements files it just has
36
37
# basic things in it like conda and pip
37
- environment-file : ./ environment.yml
38
+ environment-file : environment.yml
38
39
python-version : ${{ matrix.python-version }}
39
40
auto-activate-base : false
40
41
44
45
conda config --set always_yes yes --set changeps1 no
45
46
conda config --add channels conda-forge
46
47
conda activate test
48
+ conda install --file requirements/build.txt
47
49
conda install --file requirements/run.txt
48
50
conda install --file requirements/test.txt
49
51
pip install .
Original file line number Diff line number Diff line change @@ -5,6 +5,3 @@ dependencies:
5
5
- python>=3.10
6
6
- pip
7
7
- conda
8
- - gsl
9
- - gcc
10
- - gxx
Original file line number Diff line number Diff line change 1
1
python
2
2
setuptools
3
+ gsl
You can’t perform that action at this time.
0 commit comments