Re: [Cython] Manylinux wheels for Cython

2016-03-07 Thread Ian Bell
Jorrit, maybe in interesting for us? On Mar 7, 2016 6:48 PM, "Matthew Brett" wrote: > Hi, > > I don't know whether y'all have been following over at distutils-sig, > but there's a new distutils PEP that defines a `manylinux` format for > Linux wheels that work on many different x86 Linux distribu

Re: [Cython] Publish Windows wheels to PyPI

2015-09-28 Thread Ian Bell
I volunteered to do this quite some time ago, but at the time there wasn't much interest. The offer still stands though. I have a number of build machines that I could use and are properly configured with all the python versions and compilers needed. I've released other python packages in the sa

[Cython] build failure on windows with 0.21b1 windows py27 x64

2014-08-21 Thread Ian Bell
A snippet of my failure: lex\Scanners.c(6876) : error C2121: '#' : invalid character : possibly the result of a macro expansion lex\Scanners.c(6876) : error C2146: syntax error : missing ')' before identifier 'ifdef' lex\Scanners.c(6876) : error C2121: '#' : invalid character : possibly the resul

Re: [Cython] Test/example for cpdef enum

2014-08-05 Thread Ian Bell
On Tue, Aug 5, 2014 at 1:48 AM, Robert Bradshaw wrote: > On Mon, Aug 4, 2014 at 4:14 PM, Ian Bell wrote: > > > > On Sat, Aug 2, 2014 at 7:08 PM, Robert Bradshaw > wrote: > >> > >> On Sat, Aug 2, 2014 at 3:56 AM, Ian Bell wrote: > >> > Are ther

Re: [Cython] Test/example for cpdef enum

2014-08-04 Thread Ian Bell
On Tue, Aug 5, 2014 at 1:28 AM, Matthew Brett wrote: > On Mon, Aug 4, 2014 at 4:19 PM, Ian Bell wrote: > > > > > > > > On Tue, Aug 5, 2014 at 1:16 AM, Matthew Brett > > wrote: > >> > >> Hi, > >> > >> On Mon, Aug 4, 2014 a

Re: [Cython] Test/example for cpdef enum

2014-08-04 Thread Ian Bell
On Tue, Aug 5, 2014 at 1:16 AM, Matthew Brett wrote: > Hi, > > On Mon, Aug 4, 2014 at 4:11 PM, Ian Bell wrote: > > > > > > > > On Sat, Aug 2, 2014 at 7:42 PM, Matthew Brett > > wrote: > >> > >> On Sat, Aug 02, 2014 at 10:08 AM, Rober

Re: [Cython] Test/example for cpdef enum

2014-08-04 Thread Ian Bell
On Sat, Aug 2, 2014 at 7:08 PM, Robert Bradshaw wrote: > On Sat, Aug 2, 2014 at 3:56 AM, Ian Bell wrote: > > Are there any tests/docs/examples showing how to use the cpdef enum? > This > > is a feature I have been looking for for a long time and I am hoping to > use >

Re: [Cython] Test/example for cpdef enum

2014-08-04 Thread Ian Bell
el@python.org> > > reply-to: Core developer mailing list of the Cython compiler < > cython-devel@python.org> > > subject: Re: [Cython] Test/example for cpdef enum > > > > On Sat, Aug 2, 2014 at 3:56 AM, Ian Bell wrote: > >> Are there any tests/docs/exa

[Cython] Test/example for cpdef enum

2014-08-02 Thread Ian Bell
Are there any tests/docs/examples showing how to use the cpdef enum? This is a feature I have been looking for for a long time and I am hoping to use it very soon in my own project. I have a windows box that I can run the alpha test suite on with the full complement of python versions. Let me kn

Re: [Cython] Auto-pickle progress?

2012-09-25 Thread Ian Bell
examples in the source, but it is not easy to find Ian On Tue, Sep 25, 2012 at 6:44 AM, Sturla Molden wrote: > On 20.09.2012 21:11, Ian Bell wrote: > > Auto-pickling would be tremendously helpful as pickling and unpickling >> is one of the most annoying features of working w

[Cython] Auto-pickle progress?

2012-09-20 Thread Ian Bell
There is a proposal for auto-pickling of Cython extension types: http://wiki.cython.org/enhancements/pickling I was wondering whether there has been any progress on this front? Auto-pickling would be tremendously helpful as pickling and unpickling is one of the most annoying features of working w

[Cython] Resurrecting __dict__ for extension types

2012-06-06 Thread Ian Bell
As per a couple of discussions online ( http://mail.python.org/pipermail/cython-devel/2011-February/000122.html), it looks like at one point it was pretty close to being able to programmatically and automatically generate a __dict__ for extension types like for CPython classes. I have to manually

[Cython] Suggestion of adding working examples to website

2012-05-05 Thread Ian Bell
One "feature" that matplotlib (Python's 2D plotting library) has which makes it easy to jump into matplotlib is the huge section of working examples: http://matplotlib.sourceforge.net/examples/index.html and http://matplotlib.sourceforge.net/gallery.html . From this, within a couple of days you ca

[Cython] PXD file for overriding math functions

2012-05-02 Thread Ian Bell
Ok, I think I am missing something - I am a bit lost in the Cython jargon. Here is where I stand, let me know where I am going wrong... I compiled with cython.py -a test.py, but it isn't working. If I am completely not on the right track, feel free to let me know :) Ian # test.py (Pure pyt