Skip to content

Commit 842a9f9

Browse files
author
Michael Howitz
committed
Fix building of the docs for non-final versions.
1 parent 4dac2dc commit 842a9f9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGES.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
6.1 (unreleased)
66
================
77

8-
- Nothing changed yet.
8+
- Fix building of the docs for non-final versions.
99

1010

1111
6.1a1 (2023-04-06)

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,14 @@
5656

5757
# General information about the project.
5858
project = 'zope.interface'
59-
copyright = '2012-2017, Zope Foundation contributors'
59+
copyright = '2012-2023, Zope Foundation contributors'
6060

6161
# The version info for the project you're documenting, acts as replacement for
6262
# |version| and |release|, also used in various other places throughout the
6363
# built documents.
6464
#
6565
# The short X.Y version.
66-
version = '%s.%s' % tuple(map(int, rqmt.version.split('.')[:2]))
66+
version = '%s.%s' % tuple(rqmt.version.split('.')[:2])
6767
# The full version, including alpha/beta/rc tags.
6868
release = rqmt.version
6969

0 commit comments

Comments
 (0)