From cc5771a3247ad64161ce4bee70f060d1d2c857b2 Mon Sep 17 00:00:00 2001 From: Jim Pivarski Date: Thu, 11 Apr 2019 17:35:23 -0500 Subject: [PATCH] cross-repo sync: rc1 --- .travis.yml | 2 +- appveyor.yml | 2 +- requirements.txt | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6880777..2bf39e3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -43,7 +43,7 @@ install: - pip install $NUMPY - if [[ $TRAVIS_PYTHON_VERSION = pypy* ]] ; then pip install "numpy<1.16.0" ; fi # FIXME: pypy bug in numpy - python -c 'import numpy; print(numpy.__version__)' - - pip install "awkward>=0.7.0" + - pip install "awkward>=0.9.0" - python -c 'import awkward; print(awkward.__version__)' - pip install pytest pytest-runner - pip install --upgrade pyOpenSSL # for deployment diff --git a/appveyor.yml b/appveyor.yml index 23456a9..a4bc91e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -46,5 +46,5 @@ install: build_script: - "pip install %NUMPY%" - "pip install pytest pytest-runner" - - "pip install awkward>=0.7.0" + - "pip install awkward>=0.9.0" - "pytest -v tests" diff --git a/requirements.txt b/requirements.txt index 9a2cb01..91c908e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ numpy>=1.13.1 -awkward>=0.7.0 +awkward>=0.9.0 diff --git a/setup.py b/setup.py index f483555..6535878 100755 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ def get_description(): download_url = "https://github.com/scikit-hep/uproot-methods/releases", license = "BSD 3-clause", test_suite = "tests", - install_requires = ["numpy>=1.13.1", "awkward>=0.8.0"], + install_requires = ["numpy>=1.13.1", "awkward>=0.9.0"], tests_require = [], classifiers = [ "Development Status :: 4 - Beta",