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
Running the ./manage.py qcluster command with python 2.7 gives you an error:
from builtins import range ImportError: No module named builtins
Looks like the package 'future' is not installed when using pip to install django_q. This issue can be fixed with:
pip install future
Adding 'future' to the install_requires in setup.py should hopefully fix this little issue.
I have created a pull request at #5 to fix this.
The text was updated successfully, but these errors were encountered:
'future' handles the backward compatibility from python 3 to 2. Apparently it is not standard on all environments. Thanks.
Sorry, something went wrong.
future
Codecov -> Coveralls (Koed00#4)
89dd760
Migrate codecov to coveralls
No branches or pull requests
Running the ./manage.py qcluster command with python 2.7 gives you an error:
Looks like the package 'future' is not installed when using pip to install django_q. This issue can be fixed with:
Adding 'future' to the install_requires in setup.py should hopefully fix this little issue.
I have created a pull request at #5 to fix this.
The text was updated successfully, but these errors were encountered: