Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gwenaël Samain
cython
Commits
cc0caff9
Commit
cc0caff9
authored
Jul 14, 2013
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix copyright year in docs
parent
b360c71b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
docs/conf.py
docs/conf.py
+5
-2
No files found.
docs/conf.py
View file @
cc0caff9
...
...
@@ -12,6 +12,9 @@
# serve to show the default.
import
sys
,
os
,
os
.
path
,
re
import
datetime
YEAR
=
datetime
.
date
.
today
().
strftime
(
'%Y'
)
# 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
...
...
@@ -63,7 +66,7 @@ exclude_patterns = ['py*', 'build']
# General information about the project.
project
=
'Cython'
authors
=
'Stefan Behnel, Robert Bradshaw, Dag Sverre Seljebotn, Greg Ewing, William Stein, Gabriel Gellner, et al.'
copyright
=
'
2012, '
+
authors
copyright
=
'
%s, %s'
%
(
YEAR
,
authors
)
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
...
...
@@ -289,7 +292,7 @@ texinfo_documents = [
epub_title
=
u'Cython'
epub_author
=
authors
epub_publisher
=
u''
epub_copyright
=
u'2012, '
+
authors
epub_copyright
=
copyright
# The language of the text. It defaults to the language option
# or en if the language is not set.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment