olucurious / PyFCM

Python client for FCM - Firebase Cloud Messaging (Android, iOS and Web)
http://olucurious.github.io/PyFCM/
MIT License
803 stars 206 forks source link

Replace deprecated urllib3.Retry options #279

Closed fredericojordan closed 3 years ago

fredericojordan commented 3 years ago

Starting on v1.26.0, urllib3 has deprecated Retry(method_whitelist=...) and Retry.DEFAULT_METHOD_WHITELIST.

Deprecated Retry options Retry.DEFAULT_METHOD_WHITELIST, Retry.DEFAULT_REDIRECT_HEADERS_BLACKLIST and Retry(method_whitelist=...) in favor of Retry.DEFAULT_ALLOWED_METHODS, Retry.DEFAULT_REMOVE_HEADERS_ON_REDIRECT, and Retry(allowed_methods=...) (Pull #2000) Starting in urllib3 v2.0: Deprecated options will be removed

fredericojordan commented 3 years ago

My bad, I wasn't in the develop branch. Closed this PR in favor of #280