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

Commit

Permalink
Remove warning on import (issue #533).
Browse files Browse the repository at this point in the history
  • Loading branch information
jpivarski committed Feb 8, 2021
1 parent b4eaf90 commit 8c5a496
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 16 deletions.
15 changes: 0 additions & 15 deletions uproot3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,21 +123,6 @@

from __future__ import absolute_import

import warnings
warnings.warn(
"""Consider switching from 'uproot3' to 'uproot', since the new interface became the default in 2020.
pip install -U uproot
In Python:
>>> import uproot
>>> with uproot.open(...) as file:
...
""",
FutureWarning
)

# high-level entry points
from uproot3.rootio import open, xrootd, http
from uproot3.tree import iterate, numentries, lazyarray, lazyarrays, daskarray, daskframe
Expand Down
2 changes: 1 addition & 1 deletion uproot3/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import re

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

Expand Down

0 comments on commit 8c5a496

Please sign in to comment.