Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pyopencl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Kaushik Kulkarni
pyopencl
Commits
ffca3f1c
Commit
ffca3f1c
authored
8 years ago
by
Andreas Klöckner
Browse files
Options
Downloads
Patches
Plain Diff
Doc conf tweaks
parent
7b6e20f8
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/conf.py
+6
-3
6 additions, 3 deletions
doc/conf.py
with
6 additions
and
3 deletions
doc/conf.py
+
6
−
3
View file @
ffca3f1c
from
__future__
import
absolute_import
# -*- coding: utf-8 -*-
#
from
__future__
import
absolute_import
# PyOpenCL documentation build configuration file, created by
# sphinx-quickstart on Fri Jun 13 00:51:19 2008.
#
...
...
@@ -50,7 +51,9 @@ copyright = '2009, Andreas Kloeckner'
#
# The short X.Y version.
ver_dic
=
{}
exec
(
compile
(
open
(
"
../pyopencl/version.py
"
).
read
(),
"
../pyopencl/version.py
"
,
'
exec
'
),
ver_dic
)
with
open
(
"
../pyopencl/version.py
"
)
as
ver_file
:
ver_src
=
ver_file
.
read
()
exec
(
compile
(
ver_src
,
"
../pyopencl/version.py
"
,
'
exec
'
),
ver_dic
)
version
=
"
.
"
.
join
(
str
(
x
)
for
x
in
ver_dic
[
"
VERSION
"
])
# The full version, including alpha/beta/rc tags.
release
=
ver_dic
[
"
VERSION_TEXT
"
]
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment