File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 8
8
9
9
jobs :
10
10
test :
11
- # don't run on forks
12
- if : github.repository_owner == 'hackingmaterials'
11
+ if : github.repository_owner == 'hackingmaterials' # don't run on forks
13
12
runs-on : ubuntu-latest
14
13
15
14
steps :
@@ -23,18 +22,22 @@ jobs:
23
22
24
23
- name : Install OpenBabel
25
24
run : |
26
- sudo apt-get install openbabel python3-openbabel
25
+ sudo apt-get install libopenbabel-dev
26
+ # https://github.com/openbabel/openbabel/issues/2408#issuecomment-1014466193
27
+ sudo ln -s /usr/include/openbabel3 /usr/local/include/openbabel3
27
28
28
29
- name : Cache pip
29
30
uses : actions/cache@v2
30
31
with :
31
32
path : ~/.cache/pip
32
- key : ${{ runner.os }}-pip-${{ hashFiles('requirements-ci.txt') }}
33
+ key : ${{ runner.os }}-pip-${{ hashFiles('requirements-ci.txt', 'setup.py' ) }}
33
34
restore-keys : |
34
35
${{ runner.os }}-pip-
35
36
36
37
- name : Install dependencies
37
38
run : |
39
+ which pip
40
+ pip --version
38
41
pip install -r requirements-ci.txt
39
42
pip install .[complete]
40
43
You can’t perform that action at this time.
0 commit comments