summaryrefslogtreecommitdiff
path: root/factory/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'factory/__init__.py')
-rw-r--r--factory/__init__.py11
1 files changed, 8 insertions, 3 deletions
diff --git a/factory/__init__.py b/factory/__init__.py
index c8bc396..421e1ab 100644
--- a/factory/__init__.py
+++ b/factory/__init__.py
@@ -20,7 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
-__version__ = '2.6.1'
+__version__ = '2.7.0'
__author__ = 'Raphaƫl Barrois <raphael.barrois+fboy@polytechnique.org>'
@@ -32,22 +32,27 @@ from .base import (
ListFactory,
StubFactory,
- FactoryError,
-
BUILD_STRATEGY,
CREATE_STRATEGY,
STUB_STRATEGY,
use_strategy,
)
+
+from .errors import (
+ FactoryError,
+)
+
from .faker import Faker
from .declarations import (
+ LazyFunction,
LazyAttribute,
Iterator,
Sequence,
LazyAttributeSequence,
SelfAttribute,
+ Trait,
ContainerAttribute,
SubFactory,
Dict,