zope.interface.registry ImportError for Pyramid on Travis -


i'm having trouble working pyramid on travis; zope.interfaces dependency doesn't work.

this has in system python or --system-site-packages because i'm using binary scientific packages (scipy).

  file "/usr/local/lib/python2.7/dist-packages/pyramid/config/__init__.py", line 20, in <module>     pyramid.authorization import aclauthorizationpolicy   file "/usr/local/lib/python2.7/dist-packages/pyramid/authorization.py", line 9, in <module>     pyramid.security import (   file "/usr/local/lib/python2.7/dist-packages/pyramid/security.py", line 13, in <module>     pyramid.threadlocal import get_current_registry   file "/usr/local/lib/python2.7/dist-packages/pyramid/threadlocal.py", line 3, in <module>     pyramid.registry import global_registry   file "/usr/local/lib/python2.7/dist-packages/pyramid/registry.py", line 5, in <module>     zope.interface.registry import components importerror: no module named registry 

this current travis.yml:

language: c  install:   - sudo apt-get install python-scipy python-pip   - sudo pip install -r requirements.txt   - sudo pip install .  script:   - nosetests  after_success:   - coveralls 

the build log indicates zope.interface-4.1.2 has been installed.


Comments

Popular posts from this blog

1111. appearing after print sequence - php -

java - WARN : org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/board/] in DispatcherServlet with name 'appServlet' -

Ruby on Rails, ActiveRecord, Postgres, UTF-8 and ASCII-8BIT encodings -