Skip to content

Commit

Permalink
DateTime now requires pytz.
Browse files Browse the repository at this point in the history
Bumped version number and added dev marker on trunk.
  • Loading branch information
philikon committed Jan 6, 2008
1 parent 4e096fe commit 0597bda
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup.py
Expand Up @@ -17,7 +17,7 @@
from setuptools import setup, find_packages, Extension

setup(name='DateTime',
version = '2.11.0a2',
version = '2.11.0dev',
url='http://cheeseshop.python.org/pypi/DateTime',
license='ZPL 2.1',
description='DateTime data type',
Expand All @@ -31,7 +31,9 @@
packages=find_packages('src'),
package_dir={'': 'src'},

install_requires=['zope.interface'],
install_requires=['zope.interface',
'pytz',
],
include_package_data=True,
zip_safe=False,
)

0 comments on commit 0597bda

Please sign in to comment.