Opened 6 years ago
Last modified 6 years ago
#21441 closed defect
Old installed version of Cython is used — at Version 2
Reported by: | jdemeyer | Owned by: | |
---|---|---|---|
Priority: | blocker | Milestone: | sage-7.4 |
Component: | build | Keywords: | |
Cc: | embray | Merged in: | |
Authors: | Reviewers: | ||
Report Upstream: | N/A | Work issues: | |
Branch: | Commit: | ||
Dependencies: | Stopgaps: |
Description (last modified by )
On a machine which had on older version of Cython installed but which was upgraded recently after #20218 was merged:
$ ls -ld local/lib/python/site-packages/Cython* drwxrwxr-x 12 jdemeyer jdemeyer 4096 Sep 6 21:23 local/lib/python/site-packages/Cython drwxrwxr-x 5 jdemeyer jdemeyer 4096 Sep 6 21:22 local/lib/python/site-packages/Cython-0.23.3-py2.7-linux-i686.egg drwxrwxr-x 2 jdemeyer jdemeyer 4096 Sep 6 21:14 local/lib/python/site-packages/Cython-0.24.1-py2.7.egg-info
>>> import Cython >>> Cython.__version__ '0.23.3' >>> import sys >>> [x for x in sys.path if 'Cython' in x] ['/home/jdemeyer/sage-git/local/lib/python2.7/site-packages/Cython-0.23.3-py2.7-linux-i686.egg']
This causes breakage when building the Sage library.
Steps to reproduce:
./sage --sh -c 'easy_install cython==0.23.3'
# Install an older version of Cython.
./sage -f cython
# Rebuild the Cython in Sage. This should uninstall the old version but it doesn't.
Change History (2)
comment:1 Changed 6 years ago by
- Description modified (diff)
- Summary changed from Old version of Cython might be used to Old installed version of Cython is used
comment:2 Changed 6 years ago by
- Description modified (diff)
Note: See
TracTickets for help on using
tickets.