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

Commit

Permalink
no longer a pre-release
Browse files Browse the repository at this point in the history
  • Loading branch information
jpivarski committed Jun 17, 2019
1 parent d5552bd commit a6373d3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
numpy>=1.13.1
awkward>=0.10.0
awkward>=0.11.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
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.11.0rc1"],
install_requires = ["numpy>=1.13.1", "awkward>=0.11.0"],
tests_require = [],
classifiers = [
"Development Status :: 4 - Beta",
Expand Down
2 changes: 1 addition & 1 deletion uproot_methods/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import re

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

Expand Down

0 comments on commit a6373d3

Please sign in to comment.