Skip to content

Commit

Permalink
fix issue with plone.rest 3.0.1 in py2 for now
Browse files Browse the repository at this point in the history
  • Loading branch information
pbauer committed Sep 29, 2023
1 parent b25af0c commit 0821e7c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
if sys.version_info[0] < 3:
install_requires.append("beautifulsoup4 < 4.10")
install_requires.append("plone.restapi < 8.0.0")
# There is a py2-imcompatibility in plone.rest 3.0.1
install_requires.append("plone.rest < 3.0.1")
# plone.restapi depends on plone.schema, which depends on jsonschema,
# which has a Py3-only release since September 2021.
install_requires.append("jsonschema < 4")
Expand Down

0 comments on commit 0821e7c

Please sign in to comment.