diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2017-12-06 13:41:46 +0100 |
|---|---|---|
| committer | Kristian Evers <kristianevers@gmail.com> | 2017-12-06 13:41:54 +0100 |
| commit | ee59e88d090a9a3b6ecd9651b4f439ab9b6651e4 (patch) | |
| tree | 16eeafa7fb60b7249bbae0ff6690497ade5ab875 /docs/source/conf.py | |
| parent | 43ba4112a8901278387d0c3815937f4cbb0c5b0c (diff) | |
| download | PROJ-ee59e88d090a9a3b6ecd9651b4f439ab9b6651e4.tar.gz PROJ-ee59e88d090a9a3b6ecd9651b4f439ab9b6651e4.zip | |
Update config with version number and correct copyright dates [skip ci]
Diffstat (limited to 'docs/source/conf.py')
| -rw-r--r-- | docs/source/conf.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/source/conf.py b/docs/source/conf.py index 12ee0a57..af9d24da 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -14,6 +14,7 @@ import sys import os +import datetime # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the @@ -48,7 +49,8 @@ master_doc = 'index' # General information about the project. project = u'PROJ.4' -copyright = u'1986?-2016' +now = datetime.datetime.now() +copyright = u'1983-{0}'.format(now.year) author = u'Gerald Evenden, Frank Warmerdam, and others' # The version info for the project you're documenting, acts as replacement for @@ -56,9 +58,9 @@ author = u'Gerald Evenden, Frank Warmerdam, and others' # built documents. # # The short X.Y version. -version = u'4.9.3' +version = u'5.0.0' # The full version, including alpha/beta/rc tags. -release = u'4.9.3' +release = u'5.0.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. |
