Auto updates for year, version and release (Sphinx)#76
Auto updates for year, version and release (Sphinx)#76sigmavirus24 merged 5 commits intopython-hyper:masterfrom
Conversation
Codecov Report
@@ Coverage Diff @@
## master #76 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 13 13
Lines 822 822
=========================================
Hits 822 822 Continue to review full report at Codecov.
|
docs/source/conf.py
Outdated
| # General information about the project. | ||
| project = u'rfc3986' | ||
| copyright = u'2017, Ian Stapleton Cordasco' | ||
| copyright = u'{}, Ian Stapleton Cordasco'.format(datetime.now().year) |
There was a problem hiding this comment.
The way copyright works, you only really need the start year
There was a problem hiding this comment.
Right. I'm not a copyright expert obviously ;-)
I was just trying to make the documentation look more recent.
Maybe this is an option?
copyright = u'2017-{}, Ian Stapleton Cordasco'.format(datetime.now().year)
Or leave it as it is?
There was a problem hiding this comment.
Please just leave this as it was. The range isn't necessary as I understand it either.
This reverts commit 40a3b91.
The documentation on Read the Docs says "Copyright 2017" and version "1.0.0".
These commits will help to keep them up to date.