We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e0a4e4 commit ee69f48Copy full SHA for ee69f48
setup.py
@@ -38,6 +38,8 @@ def getVersion():
38
"Programming Language :: Python :: 3",
39
],
40
include_package_data=True,
41
- install_requires=["csmlog", "requests", "deprecated"],
+ # requests 2.27.0 changed the exception raised when .json() fails.
42
+ # See https://github.com/psf/requests/pull/5856
43
+ install_requires=["csmlog", "requests>=2.27", "deprecated"],
44
entry_points={"console_scripts": ["pyhtcc = pyhtcc.__main__:main"]},
45
)
0 commit comments