Skip to content

Commit 1982134

Browse files
authored
Fix broken docs (blue-yonder#328)
* use datetime.datetime.today to get current date * fix sphinx version 1.6.4
1 parent e531b85 commit 1982134

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
# -- General configuration -----------------------------------------------------
4040

4141
# If your documentation needs a minimal Sphinx version, state it here.
42-
needs_sphinx = '1.4.3'
42+
needs_sphinx = '1.6.4'
4343

4444
# Add any Sphinx extension module names here, as strings. They can be extensions
4545
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
@@ -62,7 +62,7 @@
6262

6363
# General information about the project.
6464
import datetime
65-
now = datetime.datetime()
65+
now = datetime.datetime.today()
6666
project = u'tsfresh'
6767
copyright = u'2016-{}, Maximilian Christ et al./ Blue Yonder GmbH'.format(now.year)
6868

0 commit comments

Comments
 (0)