Skip to content

Commit

Permalink
Raise FutureWarning instead of DeprecationWarning
Browse files Browse the repository at this point in the history
  • Loading branch information
mfisher87 committed Sep 13, 2024
1 parent a33adff commit 4d2d232
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion icepyx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# IMPORTANT: This is being done before the other icepyx imports because the imported
# code changes warning filters. If this is done after the imports, the warning won't
# work.
warn(deprecation_msg, DeprecationWarning, stacklevel=2)
warn(deprecation_msg, FutureWarning, stacklevel=2)


from _icepyx_version import version as __version__
Expand Down

0 comments on commit 4d2d232

Please sign in to comment.