[Solved] urllib3 1.26.9 or chardet 4.0.0 doesn’t match a supported version error handling

C:\Users\86132\AppData\Local\Programs\Python\Python38\python.exe C:/Users/86132/PycharmProjects/PycharmProjects/crazy_bounty/tomorrow.py
C:\Users\86132\AppData\Local\Programs\Python\Python38\lib\site-packages\requests\__init__.py:89: RequestsDependencyWarning: urllib3 (1.26.9) or chardet (4.0.0) doesn't match a supported version!
  warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "

Reason: The versions of urllib3 and chardet do not match

Solution: Enter the current __init__.py file to find the version compatibility range of urllib3 and chardet

Find the check_compatibility(urllib3_version, chardet_version) method in the code to see

def check_compatibility(urllib3_version, chardet_version):
    urllib3_version = urllib3_version.split('.')
    assert urllib3_version != ['dev'] # Verify urllib3 isn't installed from git.

    # Sometimes, urllib3 only reports its version as 16.1.
    if len(urllib3_version) == 2:
        urllib3_version.append('0')

    # Check urllib3 for compatibility.
    major, minor, patch = urllib3_version # noqa: F811
    major, minor, patch = int(major), int(minor), int(patch)
    # urllib3 >= 1.21.1, <= 1.25
    assert major == 1
    assert minor >= 21
    assert minor <= 25

    # Check chardet for compatibility.
    major, minor, patch = chardet_version.split('.')[:3]
    major, minor, patch = int(major), int(minor), int(patch)
    # chardet >= 3.0.2, < 3.1.0
    assert major == 3
    assert minor < 1
    assert patch >= 2
You can update the corresponding version as required (you need to uninstall the previous old version before installing it):