From b4eaf90e0af85003ff656286c8adf1c6f9a08fe6 Mon Sep 17 00:00:00 2001 From: Jim Pivarski Date: Mon, 14 Dec 2020 14:34:03 -0600 Subject: [PATCH] Switch from DeprecationWarning to FutureWarning. --- uproot3/__init__.py | 2 +- uproot3/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/uproot3/__init__.py b/uproot3/__init__.py index aa4fca13..0fc04b08 100644 --- a/uproot3/__init__.py +++ b/uproot3/__init__.py @@ -135,7 +135,7 @@ >>> with uproot.open(...) as file: ... """, - DeprecationWarning + FutureWarning ) # high-level entry points diff --git a/uproot3/version.py b/uproot3/version.py index 985d363f..01fa61e6 100644 --- a/uproot3/version.py +++ b/uproot3/version.py @@ -6,7 +6,7 @@ import re -__version__ = "3.14.1" +__version__ = "3.14.2" version = __version__ version_info = tuple(re.split(r"[-\.]", __version__))