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

Commit 8c5a496

Browse files
committed
Remove warning on import (issue #533).
1 parent b4eaf90 commit 8c5a496

File tree

2 files changed

+1
-16
lines changed

2 files changed

+1
-16
lines changed

uproot3/__init__.py

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -123,21 +123,6 @@
123123

124124
from __future__ import absolute_import
125125

126-
import warnings
127-
warnings.warn(
128-
"""Consider switching from 'uproot3' to 'uproot', since the new interface became the default in 2020.
129-
130-
pip install -U uproot
131-
132-
In Python:
133-
134-
>>> import uproot
135-
>>> with uproot.open(...) as file:
136-
...
137-
""",
138-
FutureWarning
139-
)
140-
141126
# high-level entry points
142127
from uproot3.rootio import open, xrootd, http
143128
from uproot3.tree import iterate, numentries, lazyarray, lazyarrays, daskarray, daskframe

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.2"
9+
__version__ = "3.14.3"
1010
version = __version__
1111
version_info = tuple(re.split(r"[-\.]", __version__))
1212

0 commit comments

Comments
 (0)