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

Commit

Permalink
Merge pull request #90 from scikit-hep/eduardo-py39
Browse files Browse the repository at this point in the history
Add support for Python 3.8 and 3.9
  • Loading branch information
jpivarski authored Nov 1, 2020
2 parents 80dbc81 + 2a43462 commit 8f539fb
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 4 deletions.
9 changes: 8 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ os:
python:
- 2.7
- 3.5
- 3.6
- 3.7
- 3.8
- 3.9
- pypy2.7-5.10.0
- pypy3.6-7.1.1

Expand All @@ -21,6 +22,12 @@ matrix:
exclude:
- python: 3.7
env: NUMPY="numpy==1.13.1"
- python: 3.8
env: NUMPY="numpy==1.13.1"
- python: 3.9
env: NUMPY="numpy==1.13.1"
- python: 3.9
env: NUMPY="numpy==1.14.5"
- python: pypy2.7-5.10.0
env: NUMPY="numpy==1.14.5"
- python: pypy3.6-7.1.1
Expand Down
15 changes: 15 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,21 @@ environment:
PYTHON_ARCH: "64"
NUMPY: "numpy==1.15"

- PYTHON: "C:\\Python37"
PYTHON_VERSION: "3.7.x"
PYTHON_ARCH: "32"
NUMPY: "numpy>=1.15"

- PYTHON: "C:\\Python38"
PYTHON_VERSION: "3.8.x"
PYTHON_ARCH: "32"
NUMPY: "numpy>=1.15"

- PYTHON: "C:\\Python39"
PYTHON_VERSION: "3.9.x"
PYTHON_ARCH: "32"
NUMPY: "numpy>=1.15"

install:
- "python --version"

Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def get_description():
"""

return description[start:stop].strip() # before + + after

setup(name = "uproot-methods",
version = get_version(),
packages = find_packages(exclude = ["tests"]),
Expand All @@ -44,7 +44,7 @@ def get_description():
install_requires = ["numpy>=1.13.1", "awkward>=0.11.0"],
tests_require = [],
classifiers = [
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
Expand All @@ -58,6 +58,8 @@ def get_description():
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
Expand Down
2 changes: 1 addition & 1 deletion uproot_methods/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import re

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

Expand Down

0 comments on commit 8f539fb

Please sign in to comment.