Skip to content

Commit

Permalink
Unbundled PySO8601
Browse files Browse the repository at this point in the history
  • Loading branch information
ericmoritz committed Aug 2, 2012
1 parent 9cdc97b commit fc97cb5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion micromodels/__init__.py
Expand Up @@ -3,4 +3,4 @@
BooleanField, DateTimeField, DateField, TimeField,\
ModelField, ModelCollectionField, FieldCollectionField

__version__ = '0.5.1'
__version__ = '0.6.0'
2 changes: 1 addition & 1 deletion micromodels/fields.py
@@ -1,5 +1,5 @@
import datetime
from micromodels.packages import PySO8601
import PySO8601


class BaseField(object):
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -28,6 +28,7 @@ def get_version():
author='Jamie Matthews',
author_email='jamie.matthews@gmail.com',
license='Public Domain',
install_requires=["PySO8601"],
classifiers = [
'Programming Language :: Python',
'Development Status :: 3 - Alpha',
Expand Down
2 changes: 1 addition & 1 deletion tests.py
Expand Up @@ -159,7 +159,7 @@ def test_format_conversion(self):

def test_iso8601_conversion(self):
import datetime
from micromodels.packages.PySO8601 import Timezone
from PySO8601 import Timezone

field = micromodels.DateTimeField()
field.populate("2010-07-13T14:01:00Z")
Expand Down

0 comments on commit fc97cb5

Please sign in to comment.