Adding back Python 2.6.

This commit is contained in:
Paul R. Tagliamonte 2013-03-13 20:02:16 -04:00
parent 1241707f73
commit a238ac53c3
4 changed files with 4 additions and 6 deletions

View File

@ -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

View File

@ -20,8 +20,6 @@
from hy.macros import process as mprocess
import importlib
MACROS = [
"hy.core.bootstrap", # defn, cond
@ -35,4 +33,4 @@ def process(tree):
def load_macros():
for module in MACROS:
importlib.import_module(module)
__import__(module)

View File

@ -1 +1 @@
# importlib # python 2.6
# Nothing, yet! (ish). Check site / dev for more deps!

View File

@ -1,5 +1,5 @@
[tox]
envlist = py27,pypy,py32,py33
envlist = py27,pypy,py32,py33,py26
[testenv]
commands = nosetests
deps =