Move from Alpine-bundled uwsgi to pip-installed and compiled uwsgi.

Alpine ships uWSGI linked against the most recent Python version,
i. e. currently python3.9. The current deployment uses python3.8
though, so whenever our Python version diverges from Alpine's
stable version, uWSGI will break (aka fail to run the parser).

Switching to installing uWSGI via pip into the pipenv will make sure
that the uWSGI Python module's version will always fit our venv.
This commit is contained in:
Kai Fabian
2021-08-24 16:42:19 +00:00
committed by f4lco
parent ea7f3b4e05
commit cc9756624a
3 changed files with 110 additions and 34 deletions
+1
View File
@@ -3,6 +3,7 @@ requests = "*"
pyopenmensa = "*"
flask = "*"
cachetools = "*"
uwsgi = "*"
[dev-packages]
pytest = "*"