Skip to content

Commit

Permalink
Support Python 2.6.
Browse files Browse the repository at this point in the history
  • Loading branch information
jakirkham committed Sep 11, 2016
1 parent 611d4ec commit 419ada6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conda_smithy/configure_feedstock.py
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ def meta_of_feedstock(forge_dir, config=None):
def compute_build_matrix(meta, existing_matrix=None):
index = conda.api.get_index()
mtx = special_case_version_matrix(meta, index)
mtx = list(filter_cases(mtx, ['python >=2.7,<3|>=3.4', 'numpy >=1.10']))
mtx = list(filter_cases(mtx, ['python >=2.6,<3|>=3.4', 'numpy >=1.10']))
if existing_matrix:
mtx = [tuple(mtx_case) + tuple(MatrixCaseEnvVar(*item) for item in case)
for case in sorted(existing_matrix)
Expand Down

0 comments on commit 419ada6

Please sign in to comment.