Update websockets & Show DeprecationWarnings from all modules (#3527)

related : #3526
This commit is contained in:
DiscordLiz 2020-02-08 07:45:45 -05:00 committed by GitHub
parent 8e3a76186b
commit 42a4d10ea5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 1 deletions

1
changelog.d/3256.dep.rst Normal file
View File

@ -0,0 +1 @@
Use websockets 8.1

View File

@ -0,0 +1 @@
Show DeprecationWarning's

View File

@ -196,3 +196,5 @@ version_info = VersionInfo.from_str(__version__)
# Filter fuzzywuzzy slow sequence matcher warning # Filter fuzzywuzzy slow sequence matcher warning
_warnings.filterwarnings("ignore", module=r"fuzzywuzzy.*") _warnings.filterwarnings("ignore", module=r"fuzzywuzzy.*")
# Show DeprecationWarning
_warnings.filterwarnings("default", category=DeprecationWarning)

View File

@ -50,7 +50,7 @@ install_requires =
schema==0.7.1 schema==0.7.1
tqdm==4.41.1 tqdm==4.41.1
uvloop==0.14.0; sys_platform != "win32" and platform_python_implementation == "CPython" uvloop==0.14.0; sys_platform != "win32" and platform_python_implementation == "CPython"
websockets==6.0 websockets==8.1
yarl==1.4.2 yarl==1.4.2
[options.extras_require] [options.extras_require]