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:
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
You can’t perform that action at this time.
0 commit comments