Adding back Python 2.6.
This commit is contained in:
parent
1241707f73
commit
a238ac53c3
@ -4,7 +4,7 @@ python:
|
|||||||
- "2.7"
|
- "2.7"
|
||||||
- "3.2"
|
- "3.2"
|
||||||
- "3.3"
|
- "3.3"
|
||||||
# - "2.6" # XXX: Importlib dep?
|
- "2.6"
|
||||||
# command to install dependencies
|
# command to install dependencies
|
||||||
install: "pip install -r requirements.txt --use-mirrors"
|
install: "pip install -r requirements.txt --use-mirrors"
|
||||||
# # command to run tests
|
# # command to run tests
|
||||||
|
@ -20,8 +20,6 @@
|
|||||||
|
|
||||||
from hy.macros import process as mprocess
|
from hy.macros import process as mprocess
|
||||||
|
|
||||||
import importlib
|
|
||||||
|
|
||||||
|
|
||||||
MACROS = [
|
MACROS = [
|
||||||
"hy.core.bootstrap", # defn, cond
|
"hy.core.bootstrap", # defn, cond
|
||||||
@ -35,4 +33,4 @@ def process(tree):
|
|||||||
|
|
||||||
def load_macros():
|
def load_macros():
|
||||||
for module in MACROS:
|
for module in MACROS:
|
||||||
importlib.import_module(module)
|
__import__(module)
|
||||||
|
@ -1 +1 @@
|
|||||||
# importlib # python 2.6
|
# Nothing, yet! (ish). Check site / dev for more deps!
|
||||||
|
Loading…
x
Reference in New Issue
Block a user