Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing dependency info on PyPI #66

Open
jnohlgard opened this issue Jun 1, 2016 · 0 comments
Open

Missing dependency info on PyPI #66

jnohlgard opened this issue Jun 1, 2016 · 0 comments

Comments

@jnohlgard
Copy link

The six module is missing when installing in a clean virtualenv (py34). I think the dependency info seem to be missing from the PyPI package.

(tmp) % pip install blitzdb
Collecting blitzdb
Installing collected packages: blitzdb
Successfully installed blitzdb-0.2.12
(tmp) % python
Python 3.4.3 (default, Jan  2 2016, 11:36:17) 
[GCC 5.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import blitzdb
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/jgn/.virtualenvs/tmp/lib/python3.4/site-packages/blitzdb/__init__.py", line 1, in <module>
    from .document import Document
  File "/home/jgn/.virtualenvs/tmp/lib/python3.4/site-packages/blitzdb/document.py", line 8, in <module>
    import six
ImportError: No module named 'six'
>>> 
(tmp) % pip install six
Collecting six
  Using cached six-1.10.0-py2.py3-none-any.whl
Installing collected packages: six
Successfully installed six-1.10.0
(tmp) % python         
Python 3.4.3 (default, Jan  2 2016, 11:36:17) 
[GCC 5.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import blitzdb
>>> 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant