[Cython] finding the Cython version (was: Cython 0.21 released)

2014-09-11 Thread Stefan Behnel
Alex K schrieb am 11.09.2014 um 13:49: > tables 3.0.0 (maybe later version too) fails to install with `pip install > tables==3.0.0` due to changes in naming. PyTables's build script expects > Cython.Compiler.Main.Version, and gives an error when it doesn't find it. > Cython 0.21 provides Cython.

Re: [Cython] [cython-users] finding the Cython version (was: Cython 0.21 released)

2014-09-11 Thread Yury V. Zaytsev
On Thu, 2014-09-11 at 14:02 +0200, Stefan Behnel wrote: > The right way to check for the Cython version is > > Cython.__version__ > > as with most Python packages. Hi Stefan, I've just send a pull request to PyTables to fix this: https://github.com/PyTables/PyTables/pull/387 I would

Re: [Cython] finding the Cython version

2014-09-11 Thread Stefan Behnel
Alex K schrieb am 11.09.2014 um 14:28: > I am a user that can not install tables 3.0.0 with cython 0.21. Tables can > be installed with cython up to 0.20.2. Can you please consider to add > Cython.Compiler.Main.Version back so that users of old tables could still > use latest cython? Normally,