mirror of
https://github.com/macports/macports-smtpselfservice.git
synced 2026-07-13 03:18:45 -07:00
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:
@@ -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
File diff suppressed because it is too large
Load Diff
+10
-10
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user