0.8.0 release.
This commit is contained in:
parent
e41ecc27af
commit
b7a6cabce0
|
@ -14,17 +14,18 @@
|
||||||
:license: BSD
|
:license: BSD
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import itertools
|
|
||||||
import functools
|
import functools
|
||||||
import inspect
|
import inspect
|
||||||
|
import itertools
|
||||||
import logging
|
import logging
|
||||||
import sys
|
import sys
|
||||||
import types
|
|
||||||
import threading
|
import threading
|
||||||
|
import types
|
||||||
import warnings
|
import warnings
|
||||||
from abc import ABCMeta, abstractmethod
|
from abc import ABCMeta, abstractmethod
|
||||||
from collections import namedtuple
|
from collections import namedtuple
|
||||||
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
NullHandler = logging.NullHandler
|
NullHandler = logging.NullHandler
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
|
@ -33,7 +34,7 @@ except AttributeError:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
__author__ = 'Alec Thomas <alec@swapoff.org>'
|
__author__ = 'Alec Thomas <alec@swapoff.org>'
|
||||||
__version__ = '0.8.0c1'
|
__version__ = '0.8.0'
|
||||||
__version_tag__ = ''
|
__version_tag__ = ''
|
||||||
|
|
||||||
log = logging.getLogger('injector')
|
log = logging.getLogger('injector')
|
||||||
|
|
Loading…
Reference in New Issue