Skip to content

Commit 3381a57

Browse files
committed
pip
1 parent 6433bce commit 3381a57

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.github/workflows/CI.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ jobs:
1616
version:
1717
- '1'
1818
- '1.6'
19+
env:
20+
PYTHON: python3
21+
1922
steps:
2023
- uses: actions/checkout@v2
2124
- uses: julia-actions/setup-julia@v1
@@ -31,6 +34,9 @@ jobs:
3134
${{ runner.os }}-test-${{ env.cache-name }}-
3235
${{ runner.os }}-test-
3336
${{ runner.os }}-
37+
- run: >
38+
sudo apt-get install --no-install-recommends python3-setuptools python3-wheel
39+
&& pip3 install sympy
3440
- uses: julia-actions/julia-buildpkg@v1
3541
- uses: julia-actions/julia-runtest@v1
3642
- uses: julia-actions/julia-processcoverage@v1

test/runtests.jl

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ using SymbolicUtils
55
using SymbolicUtils.Rewriters
66

77
using Test
8-
using PyCall, Conda
9-
Conda.pip_interop(true)
10-
Conda.pip("install", "sympy")
8+
using PyCall # , Conda
9+
# Conda.pip_interop(true)
10+
# Conda.pip("install", "sympy")
11+
# ENV["PYTHON"]=""
1112
using SymPy
1213

1314

0 commit comments

Comments
 (0)