We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a30eb57 commit ccd12acCopy full SHA for ccd12ac
2 files changed
setup.cfg
@@ -38,7 +38,7 @@ install_requires =
38
validators>=0.34.0,<1.0.0
39
authlib>=1.6.7,<2.0.0
40
# When bumping authlib to >=2.0.0, remove the `authlib.jose` deprecation
41
- # warning filter at the top of `weaviate/__init__.py`.
+ # warning filter implemented in `weaviate/_authlib_compat.py`.
42
pydantic>=2.12.0,<3.0.0
43
grpcio>=1.59.5,<1.80.0
44
protobuf>=4.21.6,<7.0.0
weaviate/_authlib_compat.py
@@ -11,4 +11,8 @@
11
12
from authlib.deprecate import AuthlibDeprecationWarning
13
14
-warnings.filterwarnings("ignore", category=AuthlibDeprecationWarning)
+warnings.filterwarnings(
15
+ "ignore",
16
+ message=r"^authlib\.jose module is deprecated",
17
+ category=AuthlibDeprecationWarning,
18
+)
0 commit comments