Skip to content

Commit

Permalink
chore: ignore deprecation warning in python 3.12
Browse files Browse the repository at this point in the history
We can't do anything about it right now, as it seems to be in graphene,
not our code. Also it's a while until python 3.14, so we can wait a bit
until Graphene is updated
  • Loading branch information
winged committed Jan 25, 2024
1 parent aab2634 commit 1991358
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ env = [
filterwarnings = [
"error::DeprecationWarning",
"error::PendingDeprecationWarning",
# warning in python 3.12 about deprecation coming in 3.14. issue is with graphene
"ignore:.*typing.ByteString.*deprecated and slated for removal in Python 3.14",
"ignore:The 'arrayconnection' module is deprecated:DeprecationWarning", # deprecation in graphene
"ignore:distutils Version classes are deprecated:DeprecationWarning", # deprecation in pytest-freezegun
"ignore:'django_extensions' defines default_app_config:PendingDeprecationWarning", # deprecation in django_extensions
Expand Down

0 comments on commit 1991358

Please sign in to comment.