From a219e9910e5062850e6e96320d53eda0f870b679 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20S=C3=A1nchez=20de=20Le=C3=B3n=20Peque?= Date: Tue, 23 May 2017 09:39:21 +0200 Subject: [PATCH] Add missing Python 3.5 references (now supported) Add this version to the Conda build matrix and to the setup.py file. --- etc/conda_build_matrix.py | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/etc/conda_build_matrix.py b/etc/conda_build_matrix.py index 64dfb34c5..5c0a02962 100644 --- a/etc/conda_build_matrix.py +++ b/etc/conda_build_matrix.py @@ -4,7 +4,7 @@ import click -py_versions = ('2.7', '3.4') +py_versions = ('2.7', '3.4', '3.5') npy_versions = ('1.9', '1.10') zipline_path = os.path.join( os.path.dirname(__file__), diff --git a/setup.py b/setup.py index 860cd9d1a..61f3d6739 100644 --- a/setup.py +++ b/setup.py @@ -305,6 +305,7 @@ def setup_requirements(requirements_path, module_names, strict_bounds, 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', 'Operating System :: OS Independent', 'Intended Audience :: Science/Research', 'Topic :: Office/Business :: Financial',