Stefano Cossu 7 лет назад
Родитель
Сommit
ea4f4fd467
5 измененных файлов с 23 добавлено и 9 удалено
  1. 1 0
      VERSION
  2. 6 7
      docs/conf.py
  3. 9 1
      lakesuperior/endpoints/main.py
  4. 1 0
      lakesuperior/endpoints/templates/index.html
  5. 6 1
      setup.py

+ 1 - 0
VERSION

@@ -0,0 +1 @@
+1.0.0a13

+ 6 - 7
docs/conf.py

@@ -17,13 +17,11 @@
 # 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.
 #
-import os
 import sys
 
+from os import path
 from unittest.mock import MagicMock
 
-#sys.path.append(os.path.abspath('../'))
-
 class MockModule(MagicMock):
     @classmethod
     def __getattr__(cls, name):
@@ -37,6 +35,8 @@ sys.modules.update((mod_name, MockModule()) for mod_name in MOCK_MODULES)
 import lakesuperior.env_setup
 
 
+here = path.abspath(path.dirname(__file__))
+
 # -- General configuration ------------------------------------------------
 
 # If your documentation needs a minimal Sphinx version, state it here.
@@ -74,10 +74,9 @@ author = 'Stefano Cossu'
 # |version| and |release|, also used in various other places throughout the
 # built documents.
 #
-# The short X.Y version.
-version = '1.0-alpha'
-# The full version, including alpha/beta/rc tags.
-release = '1.0.0-alpha.8'
+# Version and release are the same.
+with open(path.realpath(path.join(here, '..', 'VERSION'))) as fh:
+    version = release = fh.readlines()[0]
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.

+ 9 - 1
lakesuperior/endpoints/main.py

@@ -1,7 +1,11 @@
 import logging
 
+from os import path
+
 from flask import Blueprint, render_template
 
+from lakesuperior import basedir
+
 logger = logging.getLogger(__name__)
 
 # Blueprint for main pages. Not much here.
@@ -14,7 +18,11 @@ main = Blueprint('main', __name__, template_folder='templates',
 @main.route('/', methods=['GET'])
 def index():
     """Homepage."""
-    return render_template('index.html')
+    version_fname = path.abspath(
+            path.join(path.dirname(basedir), 'VERSION'))
+    with open(version_fname) as fh:
+        version = fh.readlines()[0]
+    return render_template('index.html', version=version)
 
 
 @main.route('/debug', methods=['GET'])

+ 1 - 0
lakesuperior/endpoints/templates/index.html

@@ -1,6 +1,7 @@
 {% extends 'base.html' %}
 {% block title %}LAKEsuperior{% endblock %}
 {% block content %}
+    <p>Version {{ version }}</p>
     <blockquote>
         Superior, they said, never gives up her dead<br />
         When the gales of November come early

+ 6 - 1
setup.py

@@ -25,9 +25,14 @@ pytest_runner = ['pytest-runner'] if needs_pytest else []
 with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
     long_description = f.read()
 
+# Read release number.
+with open(path.realpath(path.join(here, 'VERSION'))) as fh:
+    version = fh.readlines()[0]
+
+
 setup(
     name='lakesuperior',
-    version='1.0.0a13',
+    version=version,
 
     description='A Linked Data Platform repository sever.',
     long_description=long_description,