1) The asgiref==3.2.7 is also outdated and cannot work with the Django==3.1.4 specified in the same requirements.txt causing conflicts.
ERROR: Cannot install -r requirements.txt (line 3) and asgiref==3.2.7 because these package versions have conflicting dependencies.
The conflict is caused by:
The user requested asgiref==3.2.7
django 3.1.4 depends on asgiref<4 and >=3.2.10
So updated asgiref==3.2.7 also to asgiref==3.3.1 in requirements.txt.
The latest version of wheel and pillow also added to resolve similar errors.
All these changes ensure the successful installing of dependencies.
2) As per this changed the setup.md slightly:
python manage.py createsuperuser was changed towinpty python manage.py createsuperuser.
3) Finally updated README.md accordingly.
Type of change
Please delete options that are not relevant.
[x] Bug fix (non-breaking change which fixes an issue)
[x] New feature (non-breaking change which adds functionality)
[x] Code style update (formatting, local variables)
Describe if there is any unusual behaviour of your code(Write NA if there isn't)
A clear and concise description of it.
NA
Checklist:
[x] My code follows the style guidelines of this project.
[x] I have performed a self-review of my own code.
[x] I have made corresponding changes to the documentation.
Related Issuse or bug
Fixes: #47
Describe the changes you've made
Please note the changes made:
1) The asgiref==3.2.7 is also outdated and cannot work with the Django==3.1.4 specified in the same requirements.txt causing conflicts. ERROR: Cannot install -r requirements.txt (line 3) and asgiref==3.2.7 because these package versions have conflicting dependencies.
The conflict is caused by: The user requested asgiref==3.2.7 django 3.1.4 depends on asgiref<4 and >=3.2.10 So updated
asgiref==3.2.7
also toasgiref==3.3.1
in requirements.txt. The latest version of wheel and pillow also added to resolve similar errors.All these changes ensure the successful installing of dependencies.
2) As per this changed the setup.md slightly:
python manage.py createsuperuser
was changed towinpty python manage.py createsuperuser
.3) Finally updated README.md accordingly.
Type of change
Please delete options that are not relevant.
Describe if there is any unusual behaviour of your code(Write
NA
if there isn't)A clear and concise description of it. NA
Checklist: