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

Commit a6ac09a

Browse files
committed
need to specify a release version
1 parent b205031 commit a6ac09a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ install:
4343
- pip install $NUMPY
4444
- if [[ $TRAVIS_PYTHON_VERSION = pypy* ]] ; then pip install "numpy<1.16.0" ; fi # FIXME: pypy bug in numpy
4545
- python -c 'import numpy; print(numpy.__version__)'
46-
- pip install "awkward>=0.9.0"
46+
- pip install "awkward>=0.9.0rc1"
4747
- python -c 'import awkward; print(awkward.__version__)'
4848
- pip install pytest pytest-runner
4949
- pip install --upgrade pyOpenSSL # for deployment

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@ install:
4646
build_script:
4747
- "pip install %NUMPY%"
4848
- "pip install pytest pytest-runner"
49-
- "pip install awkward>=0.9.0"
49+
- "pip install awkward>=0.9.0rc1"
5050
- "pytest -v tests"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def get_description():
4141
download_url = "https://github.com/scikit-hep/uproot-methods/releases",
4242
license = "BSD 3-clause",
4343
test_suite = "tests",
44-
install_requires = ["numpy>=1.13.1", "awkward>=0.9.0"],
44+
install_requires = ["numpy>=1.13.1", "awkward>=0.9.0rc1"],
4545
tests_require = [],
4646
classifiers = [
4747
"Development Status :: 4 - Beta",

0 commit comments

Comments
 (0)