From cfbd69d18f45ca12e272ee5f71af66809ef1efb0 Mon Sep 17 00:00:00 2001 From: Jim Pivarski Date: Tue, 24 Nov 2020 08:21:58 -0600 Subject: [PATCH] Fix dependencies for users who DON'T 'pip install uproot3'. --- setup.py | 2 +- uproot/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index b3c4c180..264c3daf 100755 --- a/setup.py +++ b/setup.py @@ -142,7 +142,7 @@ def get_description(): license = "BSD 3-clause", test_suite = "tests", python_requires = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", - install_requires = ["numpy>=1.13.1", "awkward>=0.12.0,<1.0", "uproot-methods>=0.7.0", "cachetools"], + install_requires = ["numpy>=1.13.1", "awkward>=0.12.0,<1.0", "uproot-methods>=0.7.0,<0.9.0", "cachetools"], setup_requires = ["pytest-runner"], extras_require = { "testing": ["pytest>=3.9", "pkgconfig", "lz4", "zstandard", 'backports.lzma;python_version<"3.3"', "xxhash", "mock", "requests"], diff --git a/uproot/version.py b/uproot/version.py index 17273ffb..5b78d4c1 100644 --- a/uproot/version.py +++ b/uproot/version.py @@ -6,7 +6,7 @@ import re -__version__ = "3.13.0" +__version__ = "3.13.1" version = __version__ version_info = tuple(re.split(r"[-\.]", __version__))