Skip to content

Commit

Permalink
Remove filtering of deprecation warnings from "dateutil" lib
Browse files Browse the repository at this point in the history
No longer required now that 2.9.0 was released.
  • Loading branch information
Delgan committed Mar 2, 2024
1 parent bd66b55 commit 29ae8f9
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ filterwarnings = [
# By default all warnings are treated as errors.
'error',
# Mixing threads and "fork()" is deprecated, but we need to test it anyway.
'ignore:.*use of fork\(\) may lead to deadlocks in the child.*:DeprecationWarning',
# The "dateutil" package used by "freezegun" relies on some deprecated APIs.
'ignore:.*datetime\.datetime\.utcfromtimestamp\(\) is deprecated.*:DeprecationWarning:dateutil.tz.tz'
'ignore:.*use of fork\(\) may lead to deadlocks in the child.*:DeprecationWarning'
]
testpaths = ["tests"]

Expand Down

0 comments on commit 29ae8f9

Please sign in to comment.