pyproject.toml: Update dependencies

This now feels fresh again :)

Turns out this was pretty much compatible, only Flask changed to replace
FLASK_ENV=development with FLASK_DEBUG=1, which sounds reasonable.
This commit is contained in:
Clemens Lang
2022-11-30 01:18:16 +01:00
parent f48457c14b
commit 4e7e5149cb
3 changed files with 702 additions and 577 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ project directory, rather than in some cache directory.
Start the server using
```
FLASK_APP=smtpselfservice FLASK_ENV=development poetry run flask run
FLASK_APP=smtpselfservice FLASK_DEBUG=1 poetry run flask run
```
The application will then be running on localhost:5000. Note that for the
Generated
+691 -566
View File
File diff suppressed because it is too large Load Diff
+10 -10
View File
@@ -9,19 +9,19 @@ license = "BSD-2-Clause"
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.25.0"
Flask = "^1.1.2"
requests = "^2.28.0"
Flask = "^2.2.2"
passlib = "^1.7.4"
argon2_cffi = "^20.1.0"
flask-wtf = "^0.14.3"
psycopg2 = "^2.8.6"
diceware = "^0.9.6"
gunicorn = "^20.0.4"
argon2_cffi = "^21.3.0"
flask-wtf = "^1.0.1"
psycopg2 = "^2.9.5"
diceware = "^0.10"
gunicorn = "^20.1.0"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
pylint = "^2.6.0"
pytest-pylint = "^0.18.0"
black = "^22.10.0"
pylint = "^2.15.7"
pytest-pylint = "^0.19.0"
pytest-black = "^0.3.12"
[build-system]