File tree Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -252,7 +252,7 @@ jobs:
252
252
strategy :
253
253
fail-fast : false
254
254
matrix :
255
- sympy-version : ['1.13.1']
255
+ sympy-version : ['1.13.1', '1.14.0' ]
256
256
steps :
257
257
- uses : actions/checkout@v4
258
258
- uses : actions/setup-python@v5
@@ -265,6 +265,22 @@ jobs:
265
265
- run : pip install sympy==${{ matrix.sympy-version }}
266
266
- run : python -c 'import sympy; sympy.test(parallel=True)'
267
267
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
+
268
284
# Push nightly wheels to Anaconda scientific-python nightly channel
269
285
# https://scientific-python.org/specs/spec-0004/
270
286
# https://anaconda.org/scientific-python-nightly-wheels/python-flint
You can’t perform that action at this time.
0 commit comments