Skip to content

Commit 732a1e3

Browse files
authored
Add a Py 3.7 build with SymEngine enabled (#192)
Extracted from #37 . This will only partially enable SymEngine.
1 parent 6e5a07c commit 732a1e3

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.circleci/config.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,19 @@ defaults: &defaults
3232
path: test-reports
3333

3434
jobs:
35+
"python-3.7-symengine":
36+
<<: *defaults
37+
environment:
38+
PIP_EXTRA_INSTALLATION: numpy symengine==0.5.0
39+
USE_SYMENGINE: 1
40+
docker:
41+
- image: circleci/python:3.7
3542
"python-3.7-sympy-1.5":
3643
<<: *defaults
3744
environment:
3845
PIP_EXTRA_INSTALLATION: sympy==1.5
3946
docker:
4047
- image: circleci/python:3.7
41-
4248
"python-3.7":
4349
<<: *defaults
4450
docker:
@@ -60,8 +66,9 @@ workflows:
6066
version: 2
6167
build:
6268
jobs:
69+
- "python-3.7-symengine"
70+
- "python-3.7-sympy-1.5"
6371
- "python-3.7"
6472
- "python-3.6"
6573
- "python-3.5"
6674
- "python-2.7"
67-
- "python-3.7-sympy-1.5"

0 commit comments

Comments
 (0)