Skip to content

Commit

Permalink
Ignores deprecation warning from protobuf
Browse files Browse the repository at this point in the history
  • Loading branch information
lazarust committed May 25, 2024
1 parent 2f3ae7a commit 3739f1f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ filterwarnings = [
"ignore:DataFrameGroupBy.apply operated on the grouping columns.:DeprecationWarning",
# Ignore Pandas 2.2 warning on PyArrow. It might be reverted in a later release.
"ignore:\\s*Pyarrow will become a required dependency of pandas.*:DeprecationWarning",
# Ignore Google protobuf deprecation warnings. This should be reverted once tensorflow supports protobuf 5.0+
"ignore:Type google._upb._message.MessageMapContainer uses PyType_Spec with a metaclass that has custom tp_new. This is deprecated and will no longer be allowed in Python 3.14.:DeprecationWarning:importlib.*:",
"ignore:Type google._upb._message.ScalarMapContainer uses PyType_Spec with a metaclass that has custom tp_new. This is deprecated and will no longer be allowed in Python 3.14.:DeprecationWarning:importlib.*:",
]
markers = [
"network: marks tests as requiring internet (deselect with '-m \"not network\"')",
Expand Down

0 comments on commit 3739f1f

Please sign in to comment.