From e975a56bd4f254638f84778147b640ca0092e44d Mon Sep 17 00:00:00 2001
From: Tamas Gal <tgal@km3net.de>
Date: Wed, 26 Feb 2020 20:27:26 +0100
Subject: [PATCH] Remove jppy from doc depenency

---
 .gitlab-ci.yml | 29 ++++++++++++++---------------
 docs/conf.py   |  6 ++----
 2 files changed, 16 insertions(+), 19 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c2aca6c..bb5553d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -78,21 +78,20 @@ test-jpp-latest:
             - pdfs/
 
 
-# pages:
-#     image: docker.km3net.de/base/python:3.6
-#     stage: doc
-#     script:
-#         - *virtualenv_definition
-#         - pip install sphinx
-#         - cd doc && make clean && make html
-#         - mv _build/html ../public/
-#     artifacts:
-#         paths:
-#             - public
-#     cache: {}
-#     only:
-#         - tags
-#         - master
+pages:
+    image: docker.km3net.de/base/python:3.6
+    stage: doc
+    script:
+        - pip install -U sphinx
+        - cd doc && make clean && make html
+        - mv _build/html ../public/
+    artifacts:
+        paths:
+            - public
+    cache: {}
+    only:
+        - tags
+        - master
 
 
 pypi:
diff --git a/docs/conf.py b/docs/conf.py
index b53161c..298914d 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -15,8 +15,6 @@
 import sys
 import os
 
-import jppy
-
 # 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
 # documentation root, use os.path.abspath to make it absolute, like shown here.
@@ -63,9 +61,9 @@ author = u'Tamas Gal'
 # built documents.
 #
 # The short X.Y version.
-version = jppy.version
+version = "3"
 # The full version, including alpha/beta/rc tags.
-release = jppy.version
+release = "3"
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.
-- 
GitLab