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

Commit

Permalink
need to specify a release version
Browse files Browse the repository at this point in the history
  • Loading branch information
jpivarski committed Apr 12, 2019
1 parent b205031 commit a6ac09a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
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.0"
- pip install "awkward>=0.9.0rc1"
- 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,5 +46,5 @@ install:
build_script:
- "pip install %NUMPY%"
- "pip install pytest pytest-runner"
- "pip install awkward>=0.9.0"
- "pip install awkward>=0.9.0rc1"
- "pytest -v tests"
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.9.0"],
install_requires = ["numpy>=1.13.1", "awkward>=0.9.0rc1"],
tests_require = [],
classifiers = [
"Development Status :: 4 - Beta",
Expand Down

0 comments on commit a6ac09a

Please sign in to comment.