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

Commit a6373d3

Browse files
committed
no longer a pre-release
1 parent d5552bd commit a6373d3

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.travis.yml

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

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,6 @@ install:
4646
build_script:
4747
- "pip install %NUMPY%"
4848
- "pip install pytest pytest-runner"
49-
- "pip install \"awkward>=0.11.0rc1\""
49+
- "pip install \"awkward>=0.11.0\""
5050
- "python -c \"import awkward; print(awkward.__version__)\""
5151
- "pytest -v tests"

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
numpy>=1.13.1
2-
awkward>=0.10.0
2+
awkward>=0.11.0

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.11.0rc1"],
44+
install_requires = ["numpy>=1.13.1", "awkward>=0.11.0"],
4545
tests_require = [],
4646
classifiers = [
4747
"Development Status :: 4 - Beta",

uproot_methods/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import re
66

7-
__version__ = "0.7.0rc1"
7+
__version__ = "0.7.0"
88
version = __version__
99
version_info = tuple(re.split(r"[-\.]", __version__))
1010

0 commit comments

Comments
 (0)