We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19976ca commit 5e8733dCopy full SHA for 5e8733d
1 file changed
.github/workflows/test.yaml
@@ -14,7 +14,7 @@ jobs:
14
uses: actions/setup-python@v2
15
with:
16
python-version: ${{ matrix.python-version }}
17
- - name: Install dependencies
+ - name: Install Boost Python
18
env:
19
python_version: ${{ matrix.python-version }}
20
boost_version: "1.79.0"
@@ -32,11 +32,15 @@ jobs:
32
cd ${{ github.workspace }}
33
34
sudo ln -s "/usr/local/lib/libboost_python${python_version_abbr}.a" "/usr/local/lib/libboost_python.a"
35
+ - name: Install dependencies
36
+ run: |
37
pip install pytest
38
pip install Pillow
39
pip install kiwisolver
40
pip install gensim
41
pip install lxml
42
+ - name: Build and install easygraph
43
44
python setup.py build_ext -l boost_python -L "/usr/local/lib" -I "/usr/local/include"
45
python setup.py install
46
- name: Test with pytest
0 commit comments