Skip to content

Commit 45ab8f8

Browse files
committed
Bump FLINT to 3.2.0-rc1
1 parent deed5b1 commit 45ab8f8

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

.github/workflows/buildwheel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ jobs:
161161
fail-fast: false
162162
matrix:
163163
# Supported Flint versions:
164-
flint-tag: ['v3.0.0', 'v3.0.1', 'v3.1.0', 'v3.1.1', 'v3.1.2']
164+
flint-tag: ['v3.0.1', 'v3.1.3-p2', 'v3.2.0-rc1']
165165
steps:
166166
- uses: actions/checkout@v4
167167
- uses: actions/setup-python@v5

bin/build_variables.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ MPIRVER=3.0.0 # MPIR build no longer works (not clear where to download from)
2121
# These are the actual dependencies used (at least by default):
2222
GMPVER=6.3.0
2323
MPFRVER=4.1.0
24-
FLINTVER='3.1.3-p1'
24+
FLINTVER='3.2.0-rc1'

bin/rst_to_pxd.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,9 @@ def get_functions(file):
132132
macros.append(line.strip())
133133
continue
134134

135+
if line.strip().endswith('\\'):
136+
continue
137+
135138
m = is_func.match(line)
136139
if m:
137140
ret.append(clean_types(line[m.end():]))

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ project(
1212
# then we can consider not using a speculative upper version cap here.
1313
#
1414
flint_lower = '>=3.0'
15-
flint_upper = '<3.2'
15+
flint_upper = '<3.3'
1616
cython_lower = '>=3.0.11'
1717
cython_upper = '<3.2'
1818

0 commit comments

Comments
 (0)