From 867e1c26fe63287ecca25371bbe202905772628d Mon Sep 17 00:00:00 2001 From: Nick Timkovich Date: Wed, 1 Jun 2016 20:50:48 -0500 Subject: [PATCH] Replace dateutils with python-dateutil --- .travis.yml | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 219a9a2..169bf25 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,7 @@ python: - "3.2" - "3.3" - "3.4" + - "3.5" before_install: pip install --quiet lxml python-dateutil diff --git a/setup.py b/setup.py index 059dcb7..0df715e 100755 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setup( url = 'http://lkiesow.github.io/python-feedgen', keywords = ['feed','ATOM','RSS','podcast'], license = 'FreeBSD and LGPLv3+', - install_requires = ['lxml', 'dateutils'], + install_requires = ['lxml', 'python-dateutil'], classifiers = [ 'Development Status :: 4 - Beta', 'Development Status :: 5 - Production/Stable',