Remove probably obsolete requirement for ruamel.yaml (#136)

* Remove probably obsolete requirement for ruamel.yaml

Closes issue #134

* require dateparser>=0.7.0 (to ensure ruamel.yaml is not really needed)
This commit is contained in:
Jan Vlčinský
2018-04-04 13:37:31 +02:00
committed by Timo Furrer
parent bd34915f96
commit e0e33cc29f
3 changed files with 2 additions and 10 deletions
+1 -2
View File
@@ -6,8 +6,7 @@ sphinx = "*"
[packages]
humanize = "*"
pytz = "*"
dateparser = "*"
"ruamel.yaml" = "*"
dateparser = ">=0.7.0"
tzlocal = "*"
pendulum = ">=1.0"
snaptime = "*"
-6
View File
@@ -1,12 +1,6 @@
# ___ __ ___ _ _ ___
# || \/ | ||=|| \\// ||=||
# || | || || // || ||
# Ignore warnings for yaml usage.
import warnings
import ruamel.yaml
warnings.simplefilter('ignore', ruamel.yaml.error.UnsafeLoaderWarning)
import email.utils
import time
import functools
+1 -2
View File
@@ -23,8 +23,7 @@ if sys.argv[-1] == "publish":
required = [
'humanize',
'pytz',
'dateparser',
'ruamel.yaml',
'dateparser>=0.7.0',
'tzlocal',
'pendulum',
'snaptime'