Skip to content

Commit e28e684

Browse files
authored
Merge pull request #40 from alexei/feature/python3
Prepare for 1.0.1
2 parents a3e6cb9 + a3b4e6a commit e28e684

File tree

7 files changed

+2
-18
lines changed

7 files changed

+2
-18
lines changed

adapters/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
# -*- coding: utf-8 -*-
22

3-
4-
53
from .adapters import * # noqa
64
from .fields import * # noqa

adapters/adapters.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# -*- coding: utf-8 -*-
22

3-
4-
5-
63
import collections
74
import copy
85
import six

adapters/base.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# -*- coding: utf-8 -*-
22

3-
4-
5-
63
from .helpers import get_attribute
74
from .utils import undefined
85

adapters/fields.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# -*- coding: utf-8 -*-
22

3-
4-
53
import datetime
64
import dateutil.parser
75
from decimal import Decimal

adapters/helpers.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# -*- coding: utf-8 -*-
22

3-
4-
5-
63
import collections
74

85
from .utils import undefined

adapters/meta.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# -*- coding: utf-8 -*-
22

3-
4-
5-
63
import collections
74

85
from .base import BaseField

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
setup(
1010
name='python-adapters',
1111
packages=['adapters'],
12-
version='1.0.0',
12+
version='1.0.1',
1313
description='Python adapters',
1414
author='Alexei',
1515
author_email='hello@alexei.ro',
1616
url='https://github.com/alexei/python-adapters',
17-
download_url='https://github.com/alexei/python-adapters/archive/1.0.0.tar.gz', # noqa
17+
download_url='https://github.com/alexei/python-adapters/archive/1.0.1.tar.gz', # noqa
1818
keywords=['adapter pattern']
1919
)

0 commit comments

Comments
 (0)