[Python-Dev] Re: Regressions caused the recent work on ceval.c and frame objects

2021-09-20 Thread Inada Naoki
msgpack 1.0.2 sdist includes c++ code generated by Cython 0.29.21 released at 2020-07-09. Python 3.10 can build it without any source modifications. So I don't expect Python 3.10 requires re-generation for most Cython users. Regards, On Mon, Sep 20, 2021 at 4:11 PM wrote: > > > Will all

[Python-Dev] Re: Regressions caused the recent work on ceval.c and frame objects

2021-09-20 Thread Miro Hrončok
On 20. 09. 21 7:40, Christopher Barker wrote: Will all packages that use Cython have to upgrade Cython to work with 3.10? I am not sure if all, but many will do. -- Miro Hrončok -- Phone: +420777974800 IRC: mhroncok ___ Python-Dev mailing list --

[Python-Dev] Re: Regressions caused the recent work on ceval.c and frame objects

2021-09-20 Thread dw-git
> Will all packages that use Cython have to upgrade Cython to work with 3.10? For this particular issue you'll only have to upgrade if you use "profiling" (I doubt that many packages routinely build with Cython profiling turned on). However, it's possible there are other 3.10 bugfixes in Cython

[Python-Dev] Re: Regressions caused the recent work on ceval.c and frame objects

2021-09-19 Thread Christopher Barker
Will all packages that use Cython have to upgrade Cython to work with 3.10? That can be a pretty heavy lift. A lot of us pin Cython. -CHB On Sun, Sep 19, 2021 at 4:32 PM Miro Hrončok wrote: > On 20. 09. 21 0:10, Thomas Grainger wrote: > > Are projects that ship pre-compiled wheels impacted?

[Python-Dev] Re: Regressions caused the recent work on ceval.c and frame objects

2021-09-19 Thread Miro Hrončok
On 20. 09. 21 0:10, Thomas Grainger wrote: Are projects that ship pre-compiled wheels impacted? Eg twisted-iocpsupport ? I guess that if they managed to compile with 3.10, they shouldn't be. -- Miro Hrončok -- Phone: +420777974800 IRC: mhroncok ___

[Python-Dev] Re: Regressions caused the recent work on ceval.c and frame objects

2021-09-19 Thread Thomas Grainger
Are projects that ship pre-compiled wheels impacted? Eg twisted-iocpsupport ? On Sun, 19 Sep 2021, 22:09 Miro Hrončok, wrote: > On 19. 09. 21 21:34, dw-...@d-woods.co.uk wrote: > > Are you sure Cython is still broken? It looks like it was fixed back in > May

[Python-Dev] Re: Regressions caused the recent work on ceval.c and frame objects

2021-09-19 Thread Miro Hrončok
On 19. 09. 21 21:34, dw-...@d-woods.co.uk wrote: Are you sure Cython is still broken? It looks like it was fixed back in May (https://github.com/cython/cython/issues/4153) and all the tests look to be passing on the 3.10-dev CI run for Cython. I think it only affected the profiling feature on

[Python-Dev] Re: Regressions caused the recent work on ceval.c and frame objects

2021-09-19 Thread dw-git
Are you sure Cython is still broken? It looks like it was fixed back in May (https://github.com/cython/cython/issues/4153) and all the tests look to be passing on the 3.10-dev CI run for Cython. I think it only affected the profiling feature on Cython (which most people will have turned off) so