Skip to content

Commit

Permalink
handle py3-only release of ijson
Browse files Browse the repository at this point in the history
  • Loading branch information
pbauer committed Nov 12, 2024
1 parent 96537e0 commit 365c6c7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 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 @@ -26,6 +25,7 @@
install_requires.append("attrs < 22")
install_requires.append("backports.functools-lru-cache < 2")
install_requires.append("beautifulsoup4 < 4.10")
install_requires.append("ijson < 3.3.0")
# 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 All @@ -39,6 +39,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 365c6c7

Please sign in to comment.