Added python-dateutil

Inside WSME's parse_isodatetime there's a switch that checks for the
existence of python_dateutil. If this does not exist, it falls back
on its own ISO parsing, which does not support timezones, and causes
havoc in our API. This adds the python_datetime dependency
(BSD License) that triggers this switch.

An unrelated change has been submitted to the WSME project to handle
timezone parsing: https://review.openstack.org/#/c/161013/

Change-Id: Ib1bbe1118cc04f7622d1d0ef3993594d5bd102f7
This commit is contained in:
Michael Krotscheck 2015-03-03 14:52:57 -08:00
parent 545b49262c
commit d0bfb17caa
2 changed files with 2 additions and 0 deletions

View File

@ -26,3 +26,4 @@ tzlocal>=1.1.2
Jinja2>=2.7.3
PyMySQL>=0.6.2,!=0.6.4
apscheduler>=3.0.1
python_dateutil>=2.4.0

View File

@ -27,3 +27,4 @@ email>=4.0.2
Jinja2>=2.7.3
PyMySQL>=0.6.2,!=0.6.4
apscheduler>=3.0.1
python_dateutil>=2.4.0