Skip to content
This repository was archived by the owner on Aug 4, 2022. It is now read-only.

Commit 622027f

Browse files
author
quantmind
committed
Merge branch 'dev' of https://github.com/lsbardel/python-stdnet into dev
2 parents da5db2a + 0010c7d commit 622027f

File tree

4 files changed

+14
-22
lines changed

4 files changed

+14
-22
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2010-2013, Luca Sbardella
1+
Copyright (c) 2010-2014, Luca Sbardella
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without modification,

docs/source/_templates/layout.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
<div class="header">
77
{% if release_version %}
88
<p>
9-
Documentation for stdnet {{ version }}. For development docs,
10-
<a href="http://lsbardel.github.com/python-stdnet/{{ pagename }}{{ file_suffix }}">go here</a>.
9+
Documentation for {{ project }} {{ version }}. For development docs
10+
<a href="http://lsbardel.github.io/{{ project }}/{{ pagename }}{{ file_suffix }}">go here</a>.
1111
</p>
1212
{% else %}
1313
<p class="developmentversion">
14-
Documentation for pulsar's DEVELOPMENT version. Get the
15-
<a href="http://packages.python.org/python-stdnet/">release docs here</a>.
14+
Documentation for {{ project }}'s DEVELOPMENT version. Get the
15+
<a href="http://pythonhosted.org/{{ project }}/{{ pagename }}{{ file_suffix }}">release docs here</a>.
1616
</p>
1717
{% endif %}
1818
</div>
@@ -39,4 +39,4 @@
3939
})();
4040

4141
</script>
42-
{% endblock %}
42+
{% endblock %}

docs/source/conf.py

Lines changed: 7 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,9 @@
11
# -*- coding: utf-8 -*-
22
#
3-
# Python StdNet documentation build configuration file, created by
4-
# sphinx-quickstart on Thu Jun 17 11:24:36 2010.
5-
#
6-
# This file is execfile()d with the current directory set to its containing dir.
7-
#
8-
# Note that not all possible configuration values are present in this
9-
# autogenerated file.
10-
#
11-
# All configuration values have a default; values that are commented out
12-
# serve to show the default.
13-
14-
import sys, os
15-
3+
import sys
4+
import os
5+
from datetime import date
6+
os.environ['BUILDING-PULSAR-DOCS'] = 'yes'
167
# If your extensions are in another directory, add it here.
178
source_dir = os.path.split(os.path.abspath(__file__))[0]
189
docs_dir = os.path.split(source_dir)[0]
@@ -22,6 +13,7 @@
2213
import stdnet
2314
version = stdnet.__version__
2415
release = version
16+
year = date.today().year
2517
import runtests # so that it import pulsar if available
2618
# -- General configuration -----------------------------------------------------
2719

@@ -44,8 +36,8 @@
4436
master_doc = 'index'
4537

4638
# General information about the project.
47-
project = 'python stdnet'
48-
copyright = '2010-2013, Luca Sbardella'
39+
project = 'python-stdnet'
40+
copyright = '2009-%s, %s' % (year, stdnet.__author__)
4941

5042
html_theme = 'pulsar'
5143

stdnet/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from .utils.version import get_version, stdnet_version
66
from .backends import *
77

8-
VERSION = stdnet_version(0, 9, 0, 'alpha', 3)
8+
VERSION = stdnet_version(0, 9, 0, 'beta', 1)
99

1010

1111
__version__ = version = get_version(VERSION)

0 commit comments

Comments
 (0)