Skip to content

Commit

Permalink
Merge pull request #141 from pelson/py35_testing
Browse files Browse the repository at this point in the history
Turned on py3k testing.
  • Loading branch information
pelson committed Apr 25, 2016
2 parents 3558294 + 12284c0 commit 4d95e07
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:

matrix:
- PYTHON=2.7
# - PYTHON=3.5 (requires ruamel.yaml to exist for py35)
- PYTHON=3.5

install:
- mkdir -p ${HOME}/cache/pkgs
Expand Down
2 changes: 1 addition & 1 deletion conda_smithy/lint_recipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def lintify(meta, recipe_dir=None):
# 8: The build section should be before the run section in requirements.
requirements_order_sorted = sorted(requirements_section,
key=REQUIREMENTS_ORDER.index)
if requirements_section.keys() != requirements_order_sorted:
if list(requirements_section.keys()) != requirements_order_sorted:
lints.append('The `requirements/build` section should be defined '
'before the `requirements/run` section.')

Expand Down

0 comments on commit 4d95e07

Please sign in to comment.