Files
OpenMensa-Parser-STW-Potsdam/Pipfile
T
Kai Fabian cc9756624a 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.
2021-08-31 09:25:24 +02:00

22 lines
305 B
TOML

[packages]
requests = "*"
pyopenmensa = "*"
flask = "*"
cachetools = "*"
uwsgi = "*"
[dev-packages]
pytest = "*"
coveralls = "*"
pytest-cov = "*"
httpretty = "*"
pycodestyle = "*"
pydocstyle = "*"
pylint = "*"
sphinx = "*"
sphinx-autobuild = "*"
sphinx-rtd-theme = "*"
[requires]
python_version = "3.8"