Skip to content

Commit

Permalink
Introduce temporary package version restrictions (#579)
Browse files Browse the repository at this point in the history
* Fix package versions.

* Update readme.
  • Loading branch information
peter-doggart authored Oct 22, 2023
1 parent 7ce0ef8 commit 041c561
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ Bug Fixes
::

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


.. _enhancements-1.2.0:
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ Flask and Werkzeug moved to versions 2.0 in March 2020. This caused a breaking c
- < 2.0.0
- pinned in Flask-RESTX.
* - >= 0.5.0
- All (For Now)
- < 3.0.0
- unpinned, import statements wrapped for compatibility
* - trunk branch in Github
- All (and updated more often)
- < 3.0.0 (Flask >=3.0.0 support is in progress, see https://github.com/python-restx/flask-restx/issues/566)
- unpinned, will address issues faster than releases.

Installation
Expand Down
6 changes: 3 additions & 3 deletions requirements/install.pip
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
aniso8601>=0.82
jsonschema
Flask>=0.8, !=2.0.0
werkzeug !=2.0.0
jsonschema<=4.17.3
Flask>=0.8, !=2.0.0, <3.0.0
werkzeug!=2.0.0, <3.0.0
pytz
importlib_resources

0 comments on commit 041c561

Please sign in to comment.