Skip to content

Commit 9ec5493

Browse files
committed
BLD: Add Python 3.7 to CI/CD
1 parent 8195f3a commit 9ec5493

File tree

4 files changed

+12
-1
lines changed

4 files changed

+12
-1
lines changed

.appveyor.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,13 @@ environment:
4444
PANDAS_DATAREADER_VERSION: "0.4.0"
4545
DASK_VERSION: "0.17.1"
4646

47+
- PYTHON_VERSION: "3.7"
48+
PANDAS_VERSION: "0.22.0"
49+
NUMPY_VERSION: "1.14.1"
50+
SCIPY_VERSION: "1.0.0"
51+
PANDAS_DATAREADER_VERSION: "0.4.0"
52+
DASK_VERSION: "0.17.1"
53+
4754
# We always use a 64-bit machine, but can build x86 distributions
4855
# with the PYTHON_ARCH variable (which is used by CMD_IN_ENV).
4956
platform:

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ python:
44
- 2.7
55
- 3.5
66
- 3.6
7+
- 3.7
78
env:
89
global:
910
# 1. Generated a token for travis at https://anaconda.org/quantopian/settings/access with scope api:write.
@@ -26,6 +27,8 @@ matrix:
2627
env: NEW_PANDAS=1
2728
- python: 3.6
2829
env: OLD_PANDAS=1
30+
- python: 3.7
31+
env: OLD_PANDAS=1
2932
# include:
3033
# # Workaround Travis OSX not natively supporting Python.
3134
# - os: osx

etc/conda_build_matrix.py

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

55
import click
66

7-
py_versions = ('2.7', '3.4', '3.5', '3.6')
7+
py_versions = ('2.7', '3.4', '3.5', '3.6', '3.7')
88
npy_versions = ('1.9', '1.10')
99
zipline_path = os.path.join(
1010
os.path.dirname(__file__),

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,7 @@ def setup_requirements(requirements_path, module_names, strict_bounds,
315315
'Programming Language :: Python :: 2.7',
316316
'Programming Language :: Python :: 3.5',
317317
'Programming Language :: Python :: 3.6',
318+
'Programming Language :: Python :: 3.7',
318319
'Operating System :: OS Independent',
319320
'Intended Audience :: Science/Research',
320321
'Topic :: Office/Business :: Financial',

0 commit comments

Comments
 (0)