From a6373d3f010d3ad48abe8f6e7039378dd42c5b8a Mon Sep 17 00:00:00 2001 From: Jim Pivarski Date: Mon, 17 Jun 2019 07:36:43 -0500 Subject: [PATCH] no longer a pre-release --- .travis.yml | 2 +- appveyor.yml | 2 +- requirements.txt | 2 +- setup.py | 2 +- uproot_methods/version.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4b4a91d..c515f31 100644 --- a/.travis.yml +++ b/.travis.yml @@ -42,7 +42,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.11.0rc1" + - pip install "awkward>=0.11.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 ac020d4..cef76ae 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -46,6 +46,6 @@ install: build_script: - "pip install %NUMPY%" - "pip install pytest pytest-runner" - - "pip install \"awkward>=0.11.0rc1\"" + - "pip install \"awkward>=0.11.0\"" - "python -c \"import awkward; print(awkward.__version__)\"" - "pytest -v tests" diff --git a/requirements.txt b/requirements.txt index 014b058..85d277a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ numpy>=1.13.1 -awkward>=0.10.0 +awkward>=0.11.0 diff --git a/setup.py b/setup.py index 0ea5409..c775539 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.11.0rc1"], + install_requires = ["numpy>=1.13.1", "awkward>=0.11.0"], tests_require = [], classifiers = [ "Development Status :: 4 - Beta", diff --git a/uproot_methods/version.py b/uproot_methods/version.py index 88928bf..2fd21bd 100644 --- a/uproot_methods/version.py +++ b/uproot_methods/version.py @@ -4,7 +4,7 @@ import re -__version__ = "0.7.0rc1" +__version__ = "0.7.0" version = __version__ version_info = tuple(re.split(r"[-\.]", __version__))