diff options
author | Fernando Perez <fperez@fperez.org> | 2008-04-09 01:54:54 +0000 |
---|---|---|
committer | Fernando Perez <fperez@fperez.org> | 2008-04-09 01:54:54 +0000 |
commit | 5e31a42c49f8fee87388cd33baf891d3f0010157 (patch) | |
tree | 9af1947d6941c95e342723678445aa9912f5184d /numpy/doc/pyrex/setup.py | |
parent | 0b0a389d1dfb6d76e053988d87f6434c81dd5ba5 (diff) | |
download | numpy-5e31a42c49f8fee87388cd33baf891d3f0010157.tar.gz |
Add up to date (and slightly cleaned up) support for Cython after porting
the existing Pyrex one, put in deprecation markers in the old Pyrex dir.
The pyrex dir can be removed in a subsequent commit.
Diffstat (limited to 'numpy/doc/pyrex/setup.py')
-rw-r--r-- | numpy/doc/pyrex/setup.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/numpy/doc/pyrex/setup.py b/numpy/doc/pyrex/setup.py index 79fa363fa..7f7cf0fc1 100644 --- a/numpy/doc/pyrex/setup.py +++ b/numpy/doc/pyrex/setup.py @@ -1,5 +1,11 @@ #!/usr/bin/env python -"""Install file for example on how to use Pyrex with Numpy. +""" +WARNING: this code is deprecated and slated for removal soon. See the +doc/cython directory for the replacement, which uses Cython (the actively +maintained version of Pyrex). + + +Install file for example on how to use Pyrex with Numpy. For more details, see: http://www.scipy.org/Cookbook/Pyrex_and_NumPy |