Skip to content

Commit 696b13e

Browse files
Merge pull request #303 from oscarbenjamin/pr_symp_ver
Test SymPy master branch
2 parents c1ac8c9 + 8a5ade2 commit 696b13e

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

.github/workflows/buildwheel.yml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ jobs:
252252
strategy:
253253
fail-fast: false
254254
matrix:
255-
sympy-version: ['1.13.1']
255+
sympy-version: ['1.13.1', '1.14.0']
256256
steps:
257257
- uses: actions/checkout@v4
258258
- uses: actions/setup-python@v5
@@ -265,6 +265,22 @@ jobs:
265265
- run: pip install sympy==${{ matrix.sympy-version }}
266266
- run: python -c 'import sympy; sympy.test(parallel=True)'
267267

268+
# Run SymPy master branch agains python-flint main
269+
test_sympy_master:
270+
name: Test SymPy master
271+
runs-on: ubuntu-24.04
272+
steps:
273+
- uses: actions/checkout@v4
274+
- uses: actions/setup-python@v5
275+
with:
276+
python-version: '3.13'
277+
- run: sudo apt-get update
278+
- run: sudo apt-get install libflint-dev
279+
- run: pip install .
280+
- run: pip install pytest pytest-xdist hypothesis
281+
- run: pip install git+https://github.com/sympy/sympy.git@master
282+
- run: python -c 'import sympy; sympy.test(parallel=True)'
283+
268284
# Push nightly wheels to Anaconda scientific-python nightly channel
269285
# https://scientific-python.org/specs/spec-0004/
270286
# https://anaconda.org/scientific-python-nightly-wheels/python-flint

0 commit comments

Comments
 (0)