diff --git a/challonge/api.py b/challonge/api.py index 4c54a8e..18a746a 100644 --- a/challonge/api.py +++ b/challonge/api.py @@ -10,7 +10,7 @@ PY2 = sys.version_info[0] == 2 TEXT_TYPE = unicode if PY2 else str tz = tzlocal.get_localzone() -user_agent = "pychallonge-1.11.0" +user_agent = "pychallonge-1.11.5" CHALLONGE_API_URL = "api.challonge.com/v1" @@ -127,6 +127,7 @@ def _parse(data): "display_name_with_invitation_email_address", "username", "challonge_username", + "misc", }: continue # do not test type of fields which are always strings if isinstance(v, TEXT_TYPE): diff --git a/requirements.txt b/requirements.txt index df85c23..3df85de 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,8 @@ -certifi==2020.12.5; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" +certifi==2021.5.30; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" chardet==4.0.0; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" idna==2.10; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" iso8601==0.1.12 pytz==2019.3 requests==2.25.1; (python_version >= "2.7" and python_full_version < "3.0.0") or (python_full_version >= "3.5.0") tzlocal==2.1 -urllib3==1.26.4; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version < "4" +urllib3==1.26.5; (python_version >= "2.7" and python_full_version < "3.0.0") or (python_full_version >= "3.5.0" and python_version < "4") diff --git a/setup.py b/setup.py index 58c84eb..1b3f5ac 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ author_email="georlema@gmail.com", url="https://github.com/ZEDGR/pychallonge", license="Public Domain", - version="1.11.1", + version="1.11.5", keywords=["tournaments", "challonge"], packages=find_packages(), platforms=["any"],