Skip to content

Commit

Permalink
BLD: Add Python 3.7 to CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
Peque committed Feb 5, 2020
1 parent 8195f3a commit 6c34f54
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 2 deletions.
7 changes: 7 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,13 @@ environment:
PANDAS_DATAREADER_VERSION: "0.4.0"
DASK_VERSION: "0.17.1"

- PYTHON_VERSION: "3.7"
PANDAS_VERSION: "0.22.0"
NUMPY_VERSION: "1.14.1"
SCIPY_VERSION: "1.0.0"
PANDAS_DATAREADER_VERSION: "0.4.0"
DASK_VERSION: "0.17.1"

# We always use a 64-bit machine, but can build x86 distributions
# with the PYTHON_ARCH variable (which is used by CMD_IN_ENV).
platform:
Expand Down
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ python:
- 2.7
- 3.5
- 3.6
- 3.7
env:
global:
# 1. Generated a token for travis at https://anaconda.org/quantopian/settings/access with scope api:write.
Expand All @@ -26,6 +27,8 @@ matrix:
env: NEW_PANDAS=1
- python: 3.6
env: OLD_PANDAS=1
- python: 3.7
env: OLD_PANDAS=1
# include:
# # Workaround Travis OSX not natively supporting Python.
# - os: osx
Expand Down
2 changes: 1 addition & 1 deletion etc/conda_build_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import click

py_versions = ('2.7', '3.4', '3.5', '3.6')
py_versions = ('2.7', '3.4', '3.5', '3.6', '3.7')
npy_versions = ('1.9', '1.10')
zipline_path = os.path.join(
os.path.dirname(__file__),
Expand Down
2 changes: 1 addition & 1 deletion etc/requirements_talib.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
TA-Lib==0.4.9
TA-Lib==0.4.17
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,7 @@ def setup_requirements(requirements_path, module_names, strict_bounds,
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Topic :: Office/Business :: Financial',
Expand Down

0 comments on commit 6c34f54

Please sign in to comment.