Uh oh!
There was an error while loading. Please reload this page.
Remove uwsgi from application dependencies - #682
Conversation
uwsgi is installed by default using other means in the virtualenv used by junction. There is no need to install uwsgi through the application dependencies. The support for uwsgi is flaky at best on Windows and works with very limited functionality. Hence, this breaks development velocity for people developing Junction on Windows. Ref: pythonindia#651 Signed-off-by: Nabarun Pal <pal.nabarun95@gmail.com>
palnabarun
commented
Jun 5, 2020
Closing and reopening for satisfying Travis CI. 😞 |
sayanchowdhury
commented
Jun 6, 2020
Just a wild guess, but won't squashing an empty commit also trigger the CI? |
palnabarun
commented
Jun 6, 2020
@sayanchowdhury -- It should even if I amend the commits and force push. The problem is with Travis CI not even getting the events. 🤷♂️ |
sayanchowdhury
commented
Jun 7, 2020
Hmm, weird. |
ananyo2012
commented
Jun 7, 2020
@palnabarun I think it will be good to move this to a separate |
palnabarun
commented
Jun 7, 2020
Well, uwsgi is going to go away soon in the new setup. uwsgi is not related to the Junction application and should not be there in the project at all. |
ananyo2012
commented
Jun 7, 2020
Isn't uswgi needed in production ? |
palnabarun
commented
Jun 7, 2020
Yes. It is, but not installed using this project's requirements. |
ananyo2012
commented
Jun 13, 2020
Well it's good to have a separate prod-requirements.txt than to manually install production packages |
ananyo2012
commented
Oct 17, 2024
Keeping all dependencies in requirements.txt for now to ease dev and prod installs. |
uwsgi is installed by default using other means in the virtualenv
used by junction. There is no need to install uwsgi through the
application dependencies.
The support for uwsgi is flaky at best on Windows and works with
very limited functionality. Hence, this breaks development velocity
for people developing Junction on Windows.
Ref: #651
Closes#651