Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/readthedocs/sphinx_rtd_theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony <aj@ohess.org>2017-03-07 02:33:32 +0300
committerGitHub <noreply@github.com>2017-03-07 02:33:32 +0300
commit96e8042212f6b943e68906bf7825b65d7476cb8d (patch)
tree5044abacf2e6fc5bdacf52e4703d654929760770
parent0dc421629b219508182705d9fc9a09873a4d52a5 (diff)
parent20dd4ebd8143e4fd7ff026983e593e95c8f5242e (diff)
Merge pull request #376 from rtfd/prepare-0.2.40.2.4
Pinning 0.2.4 release
-rw-r--r--README.rst6
-rw-r--r--setup.py12
-rw-r--r--sphinx_rtd_theme/__init__.py2
3 files changed, 15 insertions, 5 deletions
diff --git a/README.rst b/README.rst
index 8744203..af72fe1 100644
--- a/README.rst
+++ b/README.rst
@@ -105,6 +105,12 @@ Changelog
master
------
+v0.2.4
+------
+
+* Yet another patch to deal with extra builders outside Spinx, such as the
+ singlehtml builders from the Read the Docs Sphinx extension
+
v0.2.3
------
diff --git a/setup.py b/setup.py
index 91d1754..e6c0a69 100644
--- a/setup.py
+++ b/setup.py
@@ -11,11 +11,11 @@ from sphinx_rtd_theme import __version__
setup(
name='sphinx_rtd_theme',
version=__version__,
- url='https://github.com/snide/sphinx_rtd_theme/',
+ url='https://github.com/rtfd/sphinx_rtd_theme/',
license='MIT',
author='Dave Snider',
author_email='dave.snider@gmail.com',
- description='ReadTheDocs.org theme for Sphinx, 2013 version.',
+ description='Read the Docs theme for Sphinx',
long_description=open('README.rst').read(),
zip_safe=False,
packages=['sphinx_rtd_theme'],
@@ -28,13 +28,17 @@ setup(
]},
include_package_data=True,
classifiers=[
- 'Development Status :: 3 - Alpha',
- 'License :: OSI Approved :: BSD License',
+ 'Development Status :: 5 - Production/Stable',
+ 'License :: OSI Approved :: MIT License',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
+ 'Programming Language :: Python :: 3.3',
+ 'Programming Language :: Python :: 3.4',
+ 'Programming Language :: Python :: 3.5',
+ 'Programming Language :: Python :: 3.6',
'Operating System :: OS Independent',
'Topic :: Documentation',
'Topic :: Software Development :: Documentation',
diff --git a/sphinx_rtd_theme/__init__.py b/sphinx_rtd_theme/__init__.py
index f2d28f8..ad08a7f 100644
--- a/sphinx_rtd_theme/__init__.py
+++ b/sphinx_rtd_theme/__init__.py
@@ -5,7 +5,7 @@ From https://github.com/ryan-roemer/sphinx-bootstrap-theme.
"""
import os
-__version__ = '0.2.3'
+__version__ = '0.2.4'
__version_full__ = __version__