Skip to content

Commit e624650

Browse files
committed
v0.2.1: limit flask & werkzeug to <2.3
1 parent a9e1a56 commit e624650

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
All notable changes to `dash-enterprise-auth` will be documented in this file.
33
This project adheres to [Semantic Versioning](https://semver.org/).
44

5+
## [0.2.1] - 2023-10-06
6+
- Add Flask and Werkzeug upper version bounds at `<2.3`. This matches the constraint in Dash v2.13. After we relax the constraint in Dash we will come back and - after testing that it works - relax it here as well.
7+
58
## [0.2.0] - 2023-08-03
69
### Updated
710
- Dropped support for Python versions below 3.6

dash_enterprise_auth/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.2.0'
1+
__version__ = '0.2.1'

requirements.txt

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
requests[security]
1+
-e .
22
PyJWT==2.4.0;python_version<"3.7"
33
PyJWT==2.8.0;python_version>="3.7"
44
cryptography<3.4;python_version<"3.7"
55
cryptography==41.0.4;python_version>="3.7"
66
# Dev requirements
7-
dash
87
pytest
98
pytest-mock

setup.py

+2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
],
2323
install_requires=[
2424
"dash",
25+
"Flask>=1.0.4,<2.3.0",
26+
"Werkzeug<2.3.0",
2527
"requests[security]",
2628
"PyJWT",
2729
"cryptography"

0 commit comments

Comments
 (0)