[sympy] SymPy 1.4 release candidate 1 ready for testing

2019-04-01 Thread Aaron Meurer
The SymPy 1.4 release candidate 1 is ready for testing. Please download it and let us know if you have any issues. The release can be downloaded from https://github.com/sympy/sympy/releases/tag/sympy-1.4rc1. The release notes for 1.4 are at https://github.com/sympy/sympy/wiki/release-notes-for-1.

Re: [sympy] SymPy 1.4 release candidate 1 ready for testing

2019-04-02 Thread Ondřej Čertík
On Mon, Apr 1, 2019, at 9:44 PM, Aaron Meurer wrote: > The SymPy 1.4 release candidate 1 is ready for testing. Please > download it and let us know if you have any issues. > > The release can be downloaded from > https://github.com/sympy/sympy/releases/tag/sympy-1.4rc1. > > The release notes f

Re: [sympy] SymPy 1.4 release candidate 1 ready for testing

2019-04-02 Thread Aaron Meurer
Thanks. GitHub recently changed that, and I edited the old releases, but I guess I forgot to update the release script. I wish they would just let us remove those entirely from the release pages. Aaron Meurer On Tue, Apr 2, 2019 at 3:12 PM Ondřej Čertík wrote: > > > > On Mon, Apr 1, 2019, at 9:4

Re: [sympy] SymPy 1.4 release candidate 1 ready for testing

2019-04-02 Thread Oscar Benjamin
I think it is now possible to upload pre-releases to PyPI so that users can ask pip to install them: https://pip.pypa.io/en/stable/reference/pip_install/#pre-release-versions https://packaging.python.org/guides/distributing-packages-using-setuptools/#pre-release-versioning Also most Python project

Re: [sympy] SymPy 1.4 release candidate 1 ready for testing

2019-04-02 Thread Aaron Meurer
I should look into prereleases. I've shied away from them in the past because pip used to install them by default. But I think things are better now. I also should get wheels working. I think it should be an easy thing to add to the release script. I'll look into if it is possible. Aaron Meurer

Re: [sympy] SymPy 1.4 release candidate 1 ready for testing

2019-04-02 Thread Nathan Goldbaum
It would also be really nice to set up wheels for fastcache. I’ve had it on my todo list forever. On Tue, Apr 2, 2019 at 4:38 PM Aaron Meurer wrote: > I should look into prereleases. I've shied away from them in the past > because pip used to install them by default. But I think things are > bet

Re: [sympy] SymPy 1.4 release candidate 1 ready for testing

2019-04-02 Thread Ondřej Čertík
On Mon, Apr 1, 2019, at 9:44 PM, Aaron Meurer wrote: > The SymPy 1.4 release candidate 1 is ready for testing. Please > download it and let us know if you have any issues. > > The release can be downloaded from > https://github.com/sympy/sympy/releases/tag/sympy-1.4rc1. > > The release notes f

Re: [sympy] SymPy 1.4 release candidate 1 ready for testing

2019-04-02 Thread Oscar Benjamin
Making a wheel is not hard: $ pip install wheel $ python setup.py bdist_wheel $ ls dist/ sympy-1.4rc1-py3-none-any.whl -- Oscar On Tue, 2 Apr 2019 at 22:39, Nathan Goldbaum wrote: > > It would also be really nice to set up wheels for fastcache. I’ve had it on > my todo list forever. > > On Tue

Re: [sympy] SymPy 1.4 release candidate 1 ready for testing

2019-04-02 Thread Aaron Meurer
I am working on adding wheel support to the release script. I might do an rc2 that the same as rc1 but includes a wheel to make sure it works right. Regarding the XPASS tests, yes, we need to go in and clean those up. Possibly some of them only fail sometimes. I think there were some issues with t

Re: [sympy] SymPy 1.4 release candidate 1 ready for testing

2019-04-04 Thread Aaron Meurer
I have made a second release candidate https://github.com/sympy/sympy/releases/tag/sympy-1.4rc2. The differences from the first release candidate are: - A wheel is now included in addition to the source tarball - The pyglet module now works again. There are still a lot of bugs with it, but it is

Re: [sympy] SymPy 1.4 release candidate 1 ready for testing

2019-04-07 Thread Sidhant Nagpal
For the second release candidate, should the size of tabulated assets be updated to be consistent with the size of (attached) binaries? https://github.com/sympy/sympy/releases Sidhant Nagpal On Friday, April 5, 2019 at 4:16:26 AM UTC+5:30, Aaron Meurer wrote: > > I have made a second release cand

Re: [sympy] SymPy 1.4 release candidate 1 ready for testing

2019-04-07 Thread Aaron Meurer
Yes. The sizes are computed using du -h, which I guess uses megabytes instead of mebibytes. It also also must be rounding up. The tarball is 6018143 bytes, which is listed as 6.1 MB. We should probably switch to a better method of computing the filesizes. Aaron Meurer On Sun, Apr 7, 2019 at 10:31