bdist_egg bdist_wheel --plat-name=win32
If your packaging config is correct, you should see the .pyx files in those
builds.
And to build all other formats and upload to pypi, I use the python library
Twine:
twine upload dist/*
Hope this can help you.
Best regards,
Stephen Larroque
2015-10-08
To: cython-devel@python.org
> Subject: Re: [Cython] Bug: Extension Type inheriting from int cause a
> MemoryError
> Message-ID: <5583b8e8.9050...@behnel.de>
> Content-Type: text/plain; charset=utf-8
>
> Stephen LARROQUE schrieb am 15.06.2015 um 12:34:
> &g
Addendum: I tried to define __weakref__ and __dealloc__, but this did
nothing to solve the issue.
2015-06-15 12:34 GMT+02:00 Stephen LARROQUE :
> Hello,
>
> I am trying to make an extension type inheriting from int or cython.int (to
> do arithmetic operations in Galois Fields). H
Hello,
I am trying to make an extension type inheriting from int or cython.int (to
do arithmetic operations in Galois Fields). However, this causes a
MemoryError because it seems such extension type is not freed correctly.
Other than that, it works perfectly well.
Here is a test case to reproduce