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

Commit

Permalink
double-sided version bounds and 3.4.21
Browse files Browse the repository at this point in the history
  • Loading branch information
jpivarski committed Jun 24, 2019
1 parent 1c27377 commit 542bc94
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ install:
- pip install --upgrade setuptools_scm
- pip install $NPY
- python -c 'import numpy; print(numpy.__version__)'
- pip install "awkward>=0.7.0"
- pip install "awkward>=0.8.0,<0.9.0"
- python -c 'import awkward; print(awkward.__version__)'
- pip install "uproot-methods>=0.3.0"
- pip install "uproot-methods>=0.4.0,<0.5.0"
- python -c 'import uproot_methods; print(uproot_methods.__version__)'
- pip install cachetools pkgconfig lz4 mock requests "pytest>=3.9" pytest-runner
- pip install lz4 requests
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ install:

build_script:
- "pip install %NUMPY%"
- "pip install awkward>=0.7.0"
- "pip install uproot-methods>=0.3.0"
- "pip install awkward>=0.8.0,<0.9.0"
- "pip install uproot-methods>=0.4.0,<0.5.0"
- "pip install -i https://pypi.anaconda.org/carlkl/simple backports.lzma"
- "pip install pytest pytest-runner pandas requests"
- "python setup.py pytest"
4 changes: 2 additions & 2 deletions binder/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
numpy>=1.13.1
awkward>=0.8.0
uproot-methods>=0.4.0
awkward>=0.8.0,<0.9.0
uproot-methods>=0.4.0,<0.5.0
cachetools
pkgconfig
lz4
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
numpy>=1.13.1
awkward>=0.8.0
uproot-methods>=0.4.0
awkward>=0.8.0,<0.9.0
uproot-methods>=0.4.0,<0.5.0
cachetools
backports.lzma;python_version<"3.3"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def get_description():
download_url = "https://github.com/scikit-hep/uproot/releases",
license = "BSD 3-clause",
test_suite = "tests",
install_requires = ["numpy>=1.13.1", "awkward>=0.8.0", "uproot-methods>=0.4.0", "cachetools"],
install_requires = ["numpy>=1.13.1", "awkward>=0.8.0,<0.9.0", "uproot-methods>=0.4.0,<0.5.0", "cachetools"],
setup_requires = ["pytest-runner"],
tests_require = ["pytest>=3.9", "pkgconfig", "lz4", 'backports.lzma;python_version<"3.3"', "mock", "requests"],
classifiers = [
Expand Down
2 changes: 1 addition & 1 deletion uproot/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

import re

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

Expand Down

0 comments on commit 542bc94

Please sign in to comment.