Skip to content

Commit a851851

Browse files
committed
move py3.6 cryptography limit into setup.py
1 parent e624650 commit a851851

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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
5+
## [0.2.1] - 2023-10-12
66
- 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.
77

88
## [0.2.0] - 2023-08-03

requirements.txt

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
-e .
22
PyJWT==2.4.0;python_version<"3.7"
33
PyJWT==2.8.0;python_version>="3.7"
4-
cryptography<3.4;python_version<"3.7"
54
cryptography==41.0.4;python_version>="3.7"
65
# Dev requirements
76
pytest

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
"Werkzeug<2.3.0",
2727
"requests[security]",
2828
"PyJWT",
29-
"cryptography"
29+
'cryptography;python_version>="3.7"',
30+
'cryptography<3.4;python_version<"3.7"'
3031
],
3132
python_requires=">=3.6",
3233
url="https://plotly.com/dash",

0 commit comments

Comments
 (0)