Hello,
the docs don't build reproducibly:
|
updated = datetime.date.today().isoformat() |
|
copyright = "2008-%d, %s. Last Updated %s" % ( |
|
datetime.date.today().year, |
|
author, |
|
updated, |
|
) |
That code uses
today's timestamp as "Last Updated" date, i.e. once per day there's a new build result.
More details from Debian are on:
Would you mind changing the code to make it reproducible? Perhaps just remove the Last Updated %s part from the copyright string?
The 2008-%d part causes no trouble in practice because of a workaround in sphinx-build + dpkg-buildpackage.
Thanks!
Hello,
the docs don't build reproducibly:
passlib/docs/conf.py
Lines 95 to 100 in 8bb648b
That code uses today's timestamp as "Last Updated" date, i.e. once per day there's a new build result.
More details from Debian are on:
Would you mind changing the code to make it reproducible? Perhaps just remove the
Last Updated %spart from the copyright string?The
2008-%dpart causes no trouble in practice because of a workaround in sphinx-build + dpkg-buildpackage.Thanks!