Skip to content

Commit

Permalink
chore: update to flask 2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
azmeuk authored and Baptiste Jonglez committed Nov 19, 2023
1 parent c2fc33a commit fb90627
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ihatemoney/tests/budget_test.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from collections import defaultdict
import datetime
import re
from urllib.parse import urlparse, urlunparse
from urllib.parse import unquote, urlparse, urlunparse

from flask import session, url_for
from libfaketime import fake_time
Expand Down Expand Up @@ -587,7 +587,7 @@ def test_admin_authentication(self):

# test the redirection to the authentication page when trying to access admin endpoints
resp = self.client.get("/create")
assert '<a href="/admin?goto=%2Fcreate">' in resp.data.decode("utf-8")
assert "/admin?goto=/create" in unquote(resp.location)

# test right password
resp = self.client.post(
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ install_requires =
Flask-Talisman>=0.8,<2
Flask-WTF>=0.14.3,<2
WTForms>=2.3.1,<3.1
Flask>=2,<2.3
Werkzeug>=2,<2.3
Flask>=2,<3
Werkzeug>=2,<3
itsdangerous>=2,<3
Jinja2>=3,<4
qrcode>=7.1,<8
Expand Down

0 comments on commit fb90627

Please sign in to comment.