We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hey everyone 👋
I just want to report that the v1.0.9 gstatus artifact is broken:
gstatus
(.venv) $ sudo ./gstatus Traceback (most recent call last): File "<frozen runpy>", line 198, in _run_module_as_main File "<frozen runpy>", line 88, in _run_code File "/Users/noueman.khalikine/git-clone/gstatus/build/./gstatus/__main__.py", line 7, in <module> ModuleNotFoundError: No module named 'packaging'
There is a mismatch between the required dependencies setup.py and the requirements.txt file.
setup.py
requirements.txt
setup.py:
install_requires=['glustercli', 'packaging'],
requirements.txt:
glustercli==0.8.3
The reason seems to be that the Makefile is using the requirements.txt to build the gstatus release:
@${PYTHON} -m pip install -r requirements.txt --target build/src
Thanks!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hey everyone 👋
I just want to report that the v1.0.9
gstatus
artifact is broken:There is a mismatch between the required dependencies
setup.py
and therequirements.txt
file.setup.py:
requirements.txt:
The reason seems to be that the Makefile is using the
requirements.txt
to build thegstatus
release:@${PYTHON} -m pip install -r requirements.txt --target build/src
Thanks!
The text was updated successfully, but these errors were encountered: