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

Commit b4eaf90

Browse files
committed
Switch from DeprecationWarning to FutureWarning.
1 parent ac6c62e commit b4eaf90

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

uproot3/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
>>> with uproot.open(...) as file:
136136
...
137137
""",
138-
DeprecationWarning
138+
FutureWarning
139139
)
140140

141141
# high-level entry points

uproot3/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
import re
88

9-
__version__ = "3.14.1"
9+
__version__ = "3.14.2"
1010
version = __version__
1111
version_info = tuple(re.split(r"[-\.]", __version__))
1212

0 commit comments

Comments
 (0)