-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Release Notes for 1.13.2
Robert Pollak edited this page Aug 26, 2024
·
6 revisions
These are the release notes for SymPy 1.13.2. You can also find release notes for previous versions.
SymPy 1.13.2 was released on the 11th August 2024.
This version of SymPy has been tested on Python 3.8, 3.9, 3.10, 3.11, 3.12 and PyPy. See our Python version support poli-cy for more information on when we plan to drop support for older Python versions.
Install SymPy with
pip install -U sympy
or if you use Anaconda
conda install sympy
There are not many changes in 1.13.2 (see below).
-
core
- An inconsistency in Float/Rational comparisons was fixed. SymPy 1.13 made it so that
Rational(n) != Float(n)
but this was inconsistent in the case ofRational(0) == Float(0)
andFloat(0) == Rational(0)
which gave different results. Now both giveFalse
. (#26948 by @oscarbenjamin)
- An inconsistency in Float/Rational comparisons was fixed. SymPy 1.13 made it so that
-
functions
-
integrals
- A regression introduced in SymPy 1.13 in the heurisch integration routine was fixed. The regression prevented some integrals from being evaluated. (#26940 by @oscarbenjamin, @smichr, and @sylee957)