add missing changelog entry: Make ``python-dateutil`` a soft-dependency.

pull/139/head
Johannes Raggam 2014-06-02 12:20:22 +02:00
rodzic aa18271277
commit 41e478a311
2 zmienionych plików z 6 dodań i 2 usunięć

Wyświetl plik

@ -5,6 +5,9 @@ Changelog
3.6.3 (unreleased)
------------------
- Make ``python-dateutil`` a soft-dependency.
[boltnev]
- Add optional ``sorted`` parameter to ``Component.to_ical``. Setting it to
false allows the user to preserve the original property and parameter order.
[untitaker]

Wyświetl plik

@ -10,10 +10,11 @@ longdesc += codecs.open('CHANGES.rst', encoding='utf-8').read()
longdesc += codecs.open('LICENSE.rst', encoding='utf-8').read()
tests_require = []
tests_require = [
'python-dateutil',
]
install_requires = [
'setuptools',
'python-dateutil',
'pytz'
]