Skip to content
This repository has been archived by the owner on Jan 27, 2023. It is now read-only.

Commit

Permalink
finally version 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jpivarski committed Apr 12, 2019
1 parent ca1c197 commit 166b0bb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -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.9.0rc1"
- pip install "awkward>=0.9.0"
- python -c 'import awkward; print(awkward.__version__)'
- pip install pytest pytest-runner
- pip install --upgrade pyOpenSSL # for deployment
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Expand Up @@ -46,6 +46,6 @@ install:
build_script:
- "pip install %NUMPY%"
- "pip install pytest pytest-runner"
- "pip install \"awkward>=0.9.0rc1\""
- "pip install \"awkward>=0.9.0\""
- "python -c \"import awkward; print(awkward.__version__)\""
- "pytest -v tests"
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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.9.0rc1"],
install_requires = ["numpy>=1.13.1", "awkward>=0.9.0"],
tests_require = [],
classifiers = [
"Development Status :: 4 - Beta",
Expand Down
2 changes: 1 addition & 1 deletion uproot_methods/version.py
Expand Up @@ -4,7 +4,7 @@

import re

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

Expand Down

0 comments on commit 166b0bb

Please sign in to comment.