Skip to content

Commit 1618a86

Browse files
committed
Add python-flint to one CI config
1 parent 14cd07d commit 1618a86

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,11 +132,12 @@ jobs:
132132
CC: gcc
133133

134134
- BUILD_TYPE: Release
135-
PYTHON_VERSION: '3.8'
135+
PYTHON_VERSION: '3.11'
136136
OS: ubuntu-20.04
137137
WITH_MPC: yes
138138
WITH_MPFR: yes
139139
WITH_FLINT: yes
140+
WITH_FLINT_PY: yes
140141
WITH_SCIPY: yes
141142
WITH_DOCS: yes
142143
INTEGER_CLASS: flint

bin/install_travis.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ if [[ "${WITH_DOCS}" == "yes" ]]; then
1616
export conda_pkgs="${conda_pkgs} sphinx recommonmark";
1717
fi
1818

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+
1923
if [[ "${WITH_SAGE}" == "yes" ]]; then
2024
# This is split to avoid the 10 minute limit
2125
conda install -q sagelib=8.1

0 commit comments

Comments
 (0)