Skip to content

Commit

Permalink
Adding back Python 2.6.
Browse files Browse the repository at this point in the history
  • Loading branch information
paultag committed Mar 14, 2013
1 parent 1241707 commit a238ac5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ python:
- "2.7"
- "3.2"
- "3.3"
# - "2.6" # XXX: Importlib dep?
- "2.6"
# command to install dependencies
install: "pip install -r requirements.txt --use-mirrors"
# # command to run tests
Expand Down
4 changes: 1 addition & 3 deletions hy/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@

from hy.macros import process as mprocess

import importlib


MACROS = [
"hy.core.bootstrap", # defn, cond
Expand All @@ -35,4 +33,4 @@ def process(tree):

def load_macros():
for module in MACROS:
importlib.import_module(module)
__import__(module)
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# importlib # python 2.6
# Nothing, yet! (ish). Check site / dev for more deps!
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27,pypy,py32,py33
envlist = py27,pypy,py32,py33,py26
[testenv]
commands = nosetests
deps =
Expand Down

0 comments on commit a238ac5

Please sign in to comment.