Re: [sympy] SymPy 1.13.0rc1 released

2024-07-02 Thread Oscar Benjamin
On Tue, 2 Jul 2024 at 17:29, Aaron Meurer wrote: > > On Tue, Jul 2, 2024 at 5:09 AM Oscar Benjamin > wrote: > > > > On Mon, 1 Jul 2024 at 18:04, Aaron Meurer wrote: > > > > > > On Mon, Jul 1, 2024 at 4:38 AM Oscar Benjamin > > > wrote: > > > > > > > > I think my preference is: > > > > > > > > 1

Re: [sympy] SymPy 1.13.0rc1 released

2024-07-02 Thread Aaron Meurer
On Tue, Jul 2, 2024 at 5:09 AM Oscar Benjamin wrote: > > On Mon, 1 Jul 2024 at 18:04, Aaron Meurer wrote: > > > > On Mon, Jul 1, 2024 at 4:38 AM Oscar Benjamin > > wrote: > > > > > > I think my preference is: > > > > > > 1. Use python-flint >= 0.6.0, < 1.0 automatically. > > > 2. Don't use pytho

Re: [sympy] SymPy 1.13.0rc1 released

2024-07-02 Thread Oscar Benjamin
On Tue, 2 Jul 2024 at 12:09, Oscar Benjamin wrote: > > If sympy uses python-flint 0.n to say 0.n+3 then python-flint can test > older versions of sympy for as long as they are "supported" and sympy > can just not use newer versions. Then we can say that sympy now > accepts 0.6.0-0.9.0 and python-f

Re: [sympy] SymPy 1.13.0rc1 released

2024-07-02 Thread Oscar Benjamin
On Mon, 1 Jul 2024 at 18:04, Aaron Meurer wrote: > > On Mon, Jul 1, 2024 at 4:38 AM Oscar Benjamin > wrote: > > > > I think my preference is: > > > > 1. Use python-flint >= 0.6.0, < 1.0 automatically. > > 2. Don't use python-flint < 0.5.0 or >= 1.0 and don't give any warning > > about it. > > 3.

Re: [sympy] SymPy 1.13.0rc1 released

2024-07-01 Thread Aaron Meurer
On Mon, Jul 1, 2024 at 4:38 AM Oscar Benjamin wrote: > > Hi all, > > Some issues were reported with the SymPy 1.13.0rc1 release candidate. > Since then I pushed 1.13.0rc2 and 1.13.0rc3 and I'm about to push > 1.13.0rc4. Thanks to everyone who tested the release candidate and > reported any problem

Re: [sympy] SymPy 1.13.0rc1 released

2024-07-01 Thread Oscar Benjamin
Hi all, Some issues were reported with the SymPy 1.13.0rc1 release candidate. Since then I pushed 1.13.0rc2 and 1.13.0rc3 and I'm about to push 1.13.0rc4. Thanks to everyone who tested the release candidate and reported any problems. I think this is a list of issues and PRs that have been include

Re: [sympy] SymPy 1.13.0rc1 released

2024-06-08 Thread Aaron Meurer
Another important change in this release is that Rational (and Integer) and Float objects no longer compare equal to one another with ==. Previously: >>> Integer(1) == Float(1.0) True >>> Rational(1, 2) == Float(0.5) True Now: >>> Integer(1) == Float(1.0) False >>> Rational(1, 2) == Float(0.5)

[sympy] SymPy 1.13.0rc1 released

2024-06-06 Thread Oscar Benjamin
Hi all, I have just pushed SymPy 1.13.0rc1 to PyPI. This is a prerelease that is being made available for early testing. You can install this with: pip install sympy==1.13.0rc1 Or alternatively: pip install --upgrade --pre sympy The release files can also be downloaded from GitHub: htt