This repository was archived by the owner on Jan 27, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ install:
42
42
- pip install $NUMPY
43
43
- if [[ $TRAVIS_PYTHON_VERSION = pypy* ]] ; then pip install "numpy<1.16.0" ; fi # FIXME: pypy bug in numpy
44
44
- python -c 'import numpy; print(numpy.__version__)'
45
- - pip install "awkward>=0.11.0rc1 "
45
+ - pip install "awkward>=0.11.0 "
46
46
- python -c 'import awkward; print(awkward.__version__)'
47
47
- pip install pytest pytest-runner
48
48
- pip install --upgrade pyOpenSSL # for deployment
Original file line number Diff line number Diff line change @@ -46,6 +46,6 @@ install:
46
46
build_script :
47
47
- " pip install %NUMPY%"
48
48
- " pip install pytest pytest-runner"
49
- - " pip install \" awkward>=0.11.0rc1 \" "
49
+ - " pip install \" awkward>=0.11.0 \" "
50
50
- " python -c \" import awkward; print(awkward.__version__)\" "
51
51
- " pytest -v tests"
Original file line number Diff line number Diff line change 1
1
numpy >= 1.13.1
2
- awkward >= 0.10 .0
2
+ awkward >= 0.11 .0
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ def get_description():
41
41
download_url = "https://github.com/scikit-hep/uproot-methods/releases" ,
42
42
license = "BSD 3-clause" ,
43
43
test_suite = "tests" ,
44
- install_requires = ["numpy>=1.13.1" , "awkward>=0.11.0rc1 " ],
44
+ install_requires = ["numpy>=1.13.1" , "awkward>=0.11.0 " ],
45
45
tests_require = [],
46
46
classifiers = [
47
47
"Development Status :: 4 - Beta" ,
Original file line number Diff line number Diff line change 4
4
5
5
import re
6
6
7
- __version__ = "0.7.0rc1 "
7
+ __version__ = "0.7.0 "
8
8
version = __version__
9
9
version_info = tuple (re .split (r"[-\.]" , __version__ ))
10
10
You can’t perform that action at this time.
0 commit comments