Skip to content
This repository has been archived by the owner on Jun 21, 2022. It is now read-only.

Commit

Permalink
Switch from DeprecationWarning to FutureWarning.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpivarski committed Dec 14, 2020
1 parent 9d03188 commit 1195301
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion awkward0/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
>>> new_style_array = ak.from_awkward0(old_style_array)
>>> old_style_array = ak.to_awkward0(new_style_array)
""",
DeprecationWarning
FutureWarning
)

from awkward0.array.base import AwkwardArray
Expand Down
2 changes: 1 addition & 1 deletion awkward0/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import re

__version__ = "0.15.1"
__version__ = "0.15.2"
version = __version__
version_info = tuple(re.split(r"[-\.]", __version__))

Expand Down

0 comments on commit 1195301

Please sign in to comment.