Skip to content

Commit

Permalink
Fix Read the Docs builds
Browse files Browse the repository at this point in the history
Follow fix from pypa/setuptools#4496 and pin
`setuptools` dependency to v70.3.0 to work around breaking change made
in v71.
  • Loading branch information
Niels Widger committed Aug 8, 2024
1 parent b58a1c4 commit b3053f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ future
marshmallow>=3.13.0,<4.0.0
requests
requests-toolbelt
setuptools==70.3.0
urllib3<2
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,5 @@ def get_version(rel_path):
],
keywords="cdrouter json rest api client",
packages=["cdrouter"],
install_requires=["future", "marshmallow>=3.13.0,<4.0.0", "requests", "requests-toolbelt", "urllib3<2"],
install_requires=["future", "marshmallow>=3.13.0,<4.0.0", "requests", "requests-toolbelt", "setuptools==70.3.0", "urllib3<2"],
)

0 comments on commit b3053f1

Please sign in to comment.