[Pyrex] ANN: Pyrex 0.9.6.3

Jim Kleckner jek-gmane at kleckner.net
Thu Oct 25 17:57:32 CEST 2007


Greg Ewing wrote:
> Pyrex 0.9.6.3 is now available:

I just downloaded and tried out Pyrex 0.9.6.3

I found that setup.py had syntax errors and the following
patch fixed the syntax errors.

--- setup.py    2007-10-11 15:32:44.000000000 -0700
+++ /usr/local/src/3psw/Pyrex-0.9.6/setup.py    2007-10-25 
08:16:14.170148700 -0700
@@ -2,11 +2,12 @@
  #   Pyrex setup file
  #

+import distutils
  from distutils.core import setup
  from distutils.sysconfig import get_python_lib
  import os, sys
  #from Pyrex.Compiler.Version import version
-execfile(distutils.util.convert_path('Pyrex/Compiler/Version.py')
+execfile(distutils.util.convert_path('Pyrex/Compiler/Version.py'))

  compiler_dir = os.path.join(get_python_lib(prefix=''), 'Pyrex', 
'Compiler')




More information about the Pyrex mailing list