Make sure dateutil up to date?

master
Bradlee Speice 2016-08-13 01:52:01 -04:00
parent dc3c57445b
commit f1d2ec524c
3 changed files with 2 additions and 6 deletions

View File

@ -1,7 +1,6 @@
from __future__ import print_function
import csv
from tzlocal import get_localzone
import requests
from collections import namedtuple
from dateutil.parser import parse
@ -63,9 +62,6 @@ class LiborRateTask(MongoCreateTask):
# download with `requests`, I see both date (often incorrect) and time.
logging.info('Received string for publication time: {}'.format(row['publication']))
dt = parse(row['publication'])
if dt.tzinfo is None:
tz = get_localzone()
dt = tz.localize(dt)
logging.info('Parsed datetime: {}'.format(dt))
logging.info('Parse timezone: {}'.format(dt.tzinfo))
dt = dt.replace(year=date.year, month=date.month, day=date.day)

View File

@ -4,4 +4,4 @@ pyquery>=1.2.9
requests>=2.9.1
pandas>=0.17.1
pymongo>=3.2
tzlocal>=1.2.2
dateutil>=2.4.2

View File

@ -14,7 +14,7 @@ setup(
'six >= 1.10.0',
'pymongo >= 3.2',
'pytz >= 2016.6.1',
'tzlocal >= 1.2.2'
'dateutil >= 2.4.2'
],
setup_requires=[
'pytest_runner'