Skip to content

Commit

Permalink
fix tests for py 2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
petschki committed Jun 20, 2024
1 parent c058281 commit 342c20a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

install_requires = [
"hurry.filesize",
"ijson",
"setuptools",
"six",
]
Expand All @@ -31,6 +30,8 @@
install_requires.append("jsonschema < 4")
install_requires.append("pathlib2")
install_requires.append("plone.api >= 1.8.4, < 2")

install_requires.append("ijson < 3.3.0")
# There is a py2-imcompatibility in plone.rest 3.0.1
install_requires.append("plone.rest < 3.0.1")
install_requires.append("plone.restapi < 8")
Expand All @@ -39,6 +40,7 @@
install_requires.append("pyrsistent < 0.16.0")
else:
install_requires.append("beautifulsoup4")
install_requires.append("ijson")
install_requires.append("plone.api >= 1.8.4")
install_requires.append("plone.restapi")

Expand Down

0 comments on commit 342c20a

Please sign in to comment.