[Checkins] SVN: zope.event/trunk/ Automate build of Sphinx HTML docs and running doctest snippets via tox.

Tres Seaver cvs-admin at zope.org
Wed May 9 03:19:13 UTC 2012


Log message for revision 125743:
  Automate build of Sphinx HTML docs and running doctest snippets via tox.
  

Changed:
  U   zope.event/trunk/CHANGES.txt
  U   zope.event/trunk/setup.py
  U   zope.event/trunk/tox.ini

-=-
Modified: zope.event/trunk/CHANGES.txt
===================================================================
--- zope.event/trunk/CHANGES.txt	2012-05-09 03:19:06 UTC (rev 125742)
+++ zope.event/trunk/CHANGES.txt	2012-05-09 03:19:10 UTC (rev 125743)
@@ -1,9 +1,11 @@
 ``zope.event`` Changelog
 ========================
 
-3.6.0 (unreleased)
+4.0.0 (unreleased)
 ------------------
 
+- Automated build of Sphinx HTML docs and running doctest snippets via tox.
+
 - Dropped explicit support for Python 2.4 / 2.5 / 3.1.
 
 - Added support for PyPy.

Modified: zope.event/trunk/setup.py
===================================================================
--- zope.event/trunk/setup.py	2012-05-09 03:19:06 UTC (rev 125742)
+++ zope.event/trunk/setup.py	2012-05-09 03:19:10 UTC (rev 125743)
@@ -27,7 +27,7 @@
 
 setup(
     name='zope.event',
-    version='3.6.0dev',
+    version='4.0.0dev',
     url='http://pypi.python.org/pypi/zope.event',
     license='ZPL 2.1',
     description='Very basic event publishing system',

Modified: zope.event/trunk/tox.ini
===================================================================
--- zope.event/trunk/tox.ini	2012-05-09 03:19:06 UTC (rev 125742)
+++ zope.event/trunk/tox.ini	2012-05-09 03:19:10 UTC (rev 125743)
@@ -3,7 +3,7 @@
 # Jython support pending 2.7 support, due 2012-07-15 or so.  See:
 # http://fwierzbicki.blogspot.com/2012/03/adconion-to-fund-jython-27.html
 #    py26,py27,py32,pypy,jython,coverage
-    py26,py27,py32,pypy,coverage
+    py26,py27,py32,pypy,coverage,docs
 
 [testenv]
 commands = 
@@ -23,3 +23,12 @@
     nose
     coverage
     nosexcover
+
+[testenv:docs]
+basepython =
+    python2.6
+commands = 
+    sphinx-build -b html -d docs/_build/doctrees docs docs/_build/html
+    sphinx-build -b doctest -d docs/_build/doctrees docs docs/_build/doctest
+deps =
+    Sphinx



More information about the checkins mailing list