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

setup.py has undeclared dependency on 'bitstring' #13

Open
TreyBoudreau opened this issue May 24, 2023 · 0 comments
Open

setup.py has undeclared dependency on 'bitstring' #13

TreyBoudreau opened this issue May 24, 2023 · 0 comments

Comments

@TreyBoudreau
Copy link

The setup.py lacks a mention of the bitstring package:

install_requires=[

The requirements.txt file lists it correctly:

bitstring==3.1.6

This causes failure at import time:

Traceback (most recent call last):
  File "/blah/blah/import-test.py", line 5, in <module>
    import aprspy
  File "/blah/blah/venv/lib/python3.10/site-packages/aprspy/__init__.py", line 11, in <module>
    from .packets.generic import GenericPacket
  File "/blah/blah/venv/lib/python3.10/site-packages/aprspy/packets/generic.py", line 11, in <module>
    from bitstring import Bits
ModuleNotFoundError: No module named 'bitstring'

One can work around it, obviously, but fixing it won't hurt :-)

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