File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -132,11 +132,12 @@ jobs:
132
132
CC : gcc
133
133
134
134
- BUILD_TYPE : Release
135
- PYTHON_VERSION : ' 3.8 '
135
+ PYTHON_VERSION : ' 3.11 '
136
136
OS : ubuntu-20.04
137
137
WITH_MPC : yes
138
138
WITH_MPFR : yes
139
139
WITH_FLINT : yes
140
+ WITH_FLINT_PY : yes
140
141
WITH_SCIPY : yes
141
142
WITH_DOCS : yes
142
143
INTEGER_CLASS : flint
Original file line number Diff line number Diff line change @@ -16,6 +16,10 @@ if [[ "${WITH_DOCS}" == "yes" ]]; then
16
16
export conda_pkgs=" ${conda_pkgs} sphinx recommonmark" ;
17
17
fi
18
18
19
+ if [[ " ${WITH_FLINT_PY} " == " yes" ]]; then
20
+ export conda_pkgs=" ${conda_pkgs} python-flint" ; # python-flint affects sympy, see e.g. sympy/sympy#26645
21
+ fi
22
+
19
23
if [[ " ${WITH_SAGE} " == " yes" ]]; then
20
24
# This is split to avoid the 10 minute limit
21
25
conda install -q sagelib=8.1
You can’t perform that action at this time.
0 commit comments