Skip to content

Commit 041c561

Browse files
Introduce temporary package version restrictions (#579)
* Fix package versions. * Update readme.
1 parent 7ce0ef8 commit 041c561

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

CHANGELOG.rst

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ Bug Fixes
3535
::
3636

3737
* Fixing test as HTTP Header MIMEAccept expects quality-factor number in form of `X.X` (#547) [chipndell]
38+
* Introduce temporary restrictions on some package versions. (`flask<3.0.0`, `werkzeug<3.0.0`, `jsonschema<=4.17.3`) [peter-doggart]
3839

3940

4041
.. _enhancements-1.2.0:

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ Flask and Werkzeug moved to versions 2.0 in March 2020. This caused a breaking c
6060
- < 2.0.0
6161
- pinned in Flask-RESTX.
6262
* - >= 0.5.0
63-
- All (For Now)
63+
- < 3.0.0
6464
- unpinned, import statements wrapped for compatibility
6565
* - trunk branch in Github
66-
- All (and updated more often)
66+
- < 3.0.0 (Flask >=3.0.0 support is in progress, see https://github.com/python-restx/flask-restx/issues/566)
6767
- unpinned, will address issues faster than releases.
6868

6969
Installation

requirements/install.pip

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
aniso8601>=0.82
2-
jsonschema
3-
Flask>=0.8, !=2.0.0
4-
werkzeug !=2.0.0
2+
jsonschema<=4.17.3
3+
Flask>=0.8, !=2.0.0, <3.0.0
4+
werkzeug!=2.0.0, <3.0.0
55
pytz
66
importlib_resources

0 commit comments

Comments
 (0)