Skip to content

Commit 42e0340

Browse files
committed
Install libpython2.7 for find_libpython
1 parent c647b58 commit 42e0340

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/conda.yml

+3
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ jobs:
3232
${{ matrix.os }} ${{ matrix.architecture }}
3333
steps:
3434
- uses: actions/checkout@v1
35+
- name: Install libpython2.7 for `find_libpython` test
36+
run: sudo apt-get install python2.7-dev
37+
if: ${{ matrix.python-version != '2.7' && matrix.os == 'ubuntu-latest' }}
3538
- name: Setup julia
3639
uses: julia-actions/setup-julia@v1
3740
with:

.github/workflows/system.yml

+3
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,9 @@ jobs:
6767
if: ${{ matrix.python-version != '2.7' }}
6868
- run: virtualenv --version
6969
if: ${{ matrix.python-version != '2.7' }}
70+
- name: Install libpython2.7 for `find_libpython` test
71+
run: sudo apt-get install python2.7-dev
72+
if: ${{ matrix.python-version != '2.7' && matrix.os == 'ubuntu-latest' }}
7073
- name: Setup julia
7174
uses: julia-actions/setup-julia@v1
7275
with:

0 commit comments

Comments
 (0)