Skip to content
This repository has been archived by the owner on Jun 21, 2022. It is now read-only.

Commit

Permalink
finally version 3.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jpivarski committed Apr 12, 2019
1 parent 5906f70 commit fad08be
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ install:
- pip install --upgrade setuptools_scm
- pip install $NPY
- python -c 'import numpy; print(numpy.__version__)'
- pip install "awkward>=0.9.0rc1"
- pip install "awkward>=0.9.0"
- python -c 'import awkward; print(awkward.__version__)'
- pip install "uproot-methods>=0.5.0rc1"
- pip install "uproot-methods>=0.5.0"
- python -c 'import uproot_methods; print(uproot_methods.__version__)'
- pip install cachetools pkgconfig lz4 mock requests "pytest>=3.9" pytest-runner
- pip install lz4 requests
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ install:

build_script:
- "pip install %NUMPY%"
- "pip install \"awkward>=0.9.0rc1\""
- "pip install \"awkward>=0.9.0\""
- "python -c \"import awkward; print(awkward.__version__)\""
- "pip install \"uproot-methods>=0.5.0rc1\""
- "pip install \"uproot-methods>=0.5.0\""
- "python -c \"import uproot_methods; print(uproot_methods.__version__)\""
- "pip install -i https://pypi.anaconda.org/carlkl/simple backports.lzma"
- "pip install pytest pytest-runner pandas requests"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def get_description():
download_url = "https://github.com/scikit-hep/uproot/releases",
license = "BSD 3-clause",
test_suite = "tests",
install_requires = ["numpy>=1.13.1", "awkward>=0.9.0rc1", "uproot-methods>=0.5.0rc1", "cachetools"],
install_requires = ["numpy>=1.13.1", "awkward>=0.9.0", "uproot-methods>=0.5.0", "cachetools"],
setup_requires = ["pytest-runner"],
tests_require = ["pytest>=3.9", "pkgconfig", "lz4", 'backports.lzma;python_version<"3.3"', "mock", "requests"],
classifiers = [
Expand Down
2 changes: 1 addition & 1 deletion uproot/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import re

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

Expand Down

0 comments on commit fad08be

Please sign in to comment.