Skip to content

Commit

Permalink
Release 0.4.1 to pin flask upper bound to <2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rayluo committed Apr 30, 2023
1 parent 10b9013 commit 51ff1b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion flask_session/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
:license: BSD, see LICENSE for more details.
"""

__version__ = '0.4.0'
__version__ = '0.4.1'

import os

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
include_package_data=True,
platforms='any',
install_requires=[
'Flask>=0.8',
'Flask>=0.8,<2.3', # Flask 2.3 removed app.session_cookie_name
'cachelib'
],
test_suite='test_session',
Expand Down

0 comments on commit 51ff1b0

Please sign in to comment.