You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The urllib3 library (part of requests, which getm depends on) renamed the parameter method_whitelist to allowed_methods in order to be more racially inclusive. The method_whitelist parameter is no longer supported by urllib3, and was finally removed two weeks ago after its deprecation period ended. See changelog here and documentation here.
getm no longer works when installed with pip, since http.py references a parameter that no longer exists in the library. I recommend that http.py be updated to use the correct parameter name:
The urllib3 library (part of requests, which getm depends on) renamed the parameter
method_whitelist
toallowed_methods
in order to be more racially inclusive. Themethod_whitelist
parameter is no longer supported by urllib3, and was finally removed two weeks ago after its deprecation period ended. See changelog here and documentation here.getm no longer works when installed with pip, since
http.py
references a parameter that no longer exists in the library. I recommend thathttp.py
be updated to use the correct parameter name:Pinning an older version of urllib3 is also a potential fix, but that seems less ideal than simply updating the method.
I'd be happy to submit a PR with the updated method if that's helpful. I'm also part of DataBiosphere, but can't currently push to this repo.
The text was updated successfully, but these errors were encountered: