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

Commit 8f539fb

Browse files
authored
Merge pull request #90 from scikit-hep/eduardo-py39
Add support for Python 3.8 and 3.9
2 parents 80dbc81 + 2a43462 commit 8f539fb

File tree

4 files changed

+28
-4
lines changed

4 files changed

+28
-4
lines changed

.travis.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ os:
77
python:
88
- 2.7
99
- 3.5
10-
- 3.6
1110
- 3.7
11+
- 3.8
12+
- 3.9
1213
- pypy2.7-5.10.0
1314
- pypy3.6-7.1.1
1415

@@ -21,6 +22,12 @@ matrix:
2122
exclude:
2223
- python: 3.7
2324
env: NUMPY="numpy==1.13.1"
25+
- python: 3.8
26+
env: NUMPY="numpy==1.13.1"
27+
- python: 3.9
28+
env: NUMPY="numpy==1.13.1"
29+
- python: 3.9
30+
env: NUMPY="numpy==1.14.5"
2431
- python: pypy2.7-5.10.0
2532
env: NUMPY="numpy==1.14.5"
2633
- python: pypy3.6-7.1.1

appveyor.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,21 @@ environment:
4040
PYTHON_ARCH: "64"
4141
NUMPY: "numpy==1.15"
4242

43+
- PYTHON: "C:\\Python37"
44+
PYTHON_VERSION: "3.7.x"
45+
PYTHON_ARCH: "32"
46+
NUMPY: "numpy>=1.15"
47+
48+
- PYTHON: "C:\\Python38"
49+
PYTHON_VERSION: "3.8.x"
50+
PYTHON_ARCH: "32"
51+
NUMPY: "numpy>=1.15"
52+
53+
- PYTHON: "C:\\Python39"
54+
PYTHON_VERSION: "3.9.x"
55+
PYTHON_ARCH: "32"
56+
NUMPY: "numpy>=1.15"
57+
4358
install:
4459
- "python --version"
4560

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def get_description():
2626
"""
2727

2828
return description[start:stop].strip() # before + + after
29-
29+
3030
setup(name = "uproot-methods",
3131
version = get_version(),
3232
packages = find_packages(exclude = ["tests"]),
@@ -44,7 +44,7 @@ def get_description():
4444
install_requires = ["numpy>=1.13.1", "awkward>=0.11.0"],
4545
tests_require = [],
4646
classifiers = [
47-
"Development Status :: 4 - Beta",
47+
"Development Status :: 5 - Production/Stable",
4848
"Intended Audience :: Developers",
4949
"Intended Audience :: Information Technology",
5050
"Intended Audience :: Science/Research",
@@ -58,6 +58,8 @@ def get_description():
5858
"Programming Language :: Python :: 3.5",
5959
"Programming Language :: Python :: 3.6",
6060
"Programming Language :: Python :: 3.7",
61+
"Programming Language :: Python :: 3.8",
62+
"Programming Language :: Python :: 3.9",
6163
"Topic :: Scientific/Engineering",
6264
"Topic :: Scientific/Engineering :: Information Analysis",
6365
"Topic :: Scientific/Engineering :: Mathematics",

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.4"
7+
__version__ = "0.8.0"
88
version = __version__
99
version_info = tuple(re.split(r"[-\.]", __version__))
1010

0 commit comments

Comments
 (0)