You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd like to use xqueue-watcher as a package to create my own watcher as child class of Grader, as described here.
In order to do that I created new project and tried to import the watcher there via a command: pip install -r requirements.txt
there a content of the requirements file is -e git+https://github.com/edx/xqueue-watcher#egg=xqueue-watcher
The process failed with error 'install_requires' must be a string or list of strings containing valid project/version requirement specifiers; Invalid requirement, parse error at "'-e git+h'"
After I tried to clone this project and build it via a command python setup.py install
and got the same error.
Looks like an issue is install_requires=open('requirements/production.txt', 'rb').readlines() string in setup.py and git codejail dependecy in requirements files.
Is it really the issue or do I make something wrong?
The text was updated successfully, but these errors were encountered:
Hi all.
I'd like to use xqueue-watcher as a package to create my own watcher as child class of Grader, as described here.
In order to do that I created new project and tried to import the watcher there via a command:
pip install -r requirements.txt
there a content of the requirements file is
-e git+https://github.com/edx/xqueue-watcher#egg=xqueue-watcher
The process failed with error
'install_requires' must be a string or list of strings containing valid project/version requirement specifiers; Invalid requirement, parse error at "'-e git+h'"
After I tried to clone this project and build it via a command
python setup.py install
and got the same error.
Looks like an issue is
install_requires=open('requirements/production.txt', 'rb').readlines()
string in setup.py and gitcodejail
dependecy in requirements files.Is it really the issue or do I make something wrong?
The text was updated successfully, but these errors were encountered: