-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #40 from alexei/feature/python3
Prepare for 1.0.1
- Loading branch information
Showing
7 changed files
with
2 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
|
||
|
||
from .adapters import * # noqa | ||
from .fields import * # noqa |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
|
||
|
||
|
||
import collections | ||
import copy | ||
import six | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
|
||
|
||
|
||
from .helpers import get_attribute | ||
from .utils import undefined | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
|
||
|
||
import datetime | ||
import dateutil.parser | ||
from decimal import Decimal | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
|
||
|
||
|
||
import collections | ||
|
||
from .utils import undefined | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
|
||
|
||
|
||
import collections | ||
|
||
from .base import BaseField | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,11 +9,11 @@ | |
setup( | ||
name='python-adapters', | ||
packages=['adapters'], | ||
version='1.0.0', | ||
version='1.0.1', | ||
description='Python adapters', | ||
author='Alexei', | ||
author_email='[email protected]', | ||
url='https://github.com/alexei/python-adapters', | ||
download_url='https://github.com/alexei/python-adapters/archive/1.0.0.tar.gz', # noqa | ||
download_url='https://github.com/alexei/python-adapters/archive/1.0.1.tar.gz', # noqa | ||
keywords=['adapter pattern'] | ||
) |