1 new changeset in pytest: http://bitbucket.org/hpk42/pytest/changeset/2793fddd5531/ changeset: 2793fddd5531 user: hpk42 date: 2011-07-08 12:42:26 summary: fix issue 35 - provide download link and improved PDF version affected #: 6 files (307 bytes)
--- a/CHANGELOG Thu Jul 07 23:21:01 2011 +0200 +++ b/CHANGELOG Fri Jul 08 12:42:26 2011 +0200 @@ -16,6 +16,7 @@ - show releaselevel information in test runs for pypy - reworked doc pages for better navigation and PDF generation - report KeyboardInterrupt even if interrupted during session startup +- fix issue 35 - provide PDF doc version and download link from index page Changes between 2.0.2 and 2.0.3 ---------------------------------------------- --- a/_pytest/__init__.py Thu Jul 07 23:21:01 2011 +0200 +++ b/_pytest/__init__.py Fri Jul 08 12:42:26 2011 +0200 @@ -1,2 +1,2 @@ # -__version__ = '2.1.0.dev11' +__version__ = '2.1.0.dev12' --- a/doc/conf.py Thu Jul 07 23:21:01 2011 +0200 +++ b/doc/conf.py Fri Jul 08 12:42:26 2011 +0200 @@ -48,11 +48,10 @@ # |version| and |release|, also used in various other places throughout the # built documents. # -# The short X.Y version. -version = '2.0' # The full version, including alpha/beta/rc tags. import pytest release = pytest.__version__ +# The short X.Y version. version = ".".join(release.split(".")[:2]) # The language for content autogenerated by Sphinx. Refer to documentation @@ -184,7 +183,7 @@ # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, author, documentclass [howto/manual]). latex_documents = [ - ('index', 'pytest.tex', u'pytest Documentation', + ('contents', 'pytest.tex', u'pytest Documentation', u'holger krekel et alii', 'manual'), ] @@ -228,7 +227,7 @@ epub_title = u'pytest' epub_author = u'holger krekel et alii' epub_publisher = u'holger krekel et alii' -epub_copyright = u'2010, holger krekel et alii' +epub_copyright = u'2011, holger krekel et alii' # The language of the text. It defaults to the language option # or en if the language is not set. --- a/doc/contents.txt Thu Jul 07 23:21:01 2011 +0200 +++ b/doc/contents.txt Fri Jul 08 12:42:26 2011 +0200 @@ -1,9 +1,13 @@ .. _toc: -Table of Contents +Full pytest documenation ======================== +`Download latest version as PDF <http://media.readthedocs.org/pdf/pytest/latest/pytest.pdf>`_ + +.. `Download latest version as EPUB <http://media.readthedocs.org/epub/pytest/latest/pytest.epub>`_ + .. toctree:: :maxdepth: 2 --- a/doc/index.txt Thu Jul 07 23:21:01 2011 +0200 +++ b/doc/index.txt Fri Jul 08 12:42:26 2011 +0200 @@ -6,11 +6,11 @@ - **a mature full-featured testing tool** - runs on Posix/Windows, Python 2.4-3.2, PyPy and Jython + - :ref:`comprehensive online and PDF documentation <toc>` - continuously `tested on many Python interpreters <http://hudson.testrun.org/view/pytest/job/pytest/>`_ - used in :ref:`many projects and organisations <projects>`, in test suites ranging from 10 to 10s of thousands of tests - - has :ref:`comprehensive documentation <toc>` - - comes with :ref:`tested examples <examples>` + - comes with many :ref:`tested examples <examples>` - supports :ref:`good integration practises <goodpractises>` - **provides no-boilerplate testing** --- a/setup.py Thu Jul 07 23:21:01 2011 +0200 +++ b/setup.py Fri Jul 08 12:42:26 2011 +0200 @@ -22,7 +22,7 @@ name='pytest', description='py.test: simple powerful testing with Python', long_description = long_description, - version='2.1.0.dev11', + version='2.1.0.dev12', url='http://pytest.org', license='MIT license', platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'], Repository URL: https://bitbucket.org/hpk42/pytest/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. _______________________________________________ py-svn mailing list py-svn@codespeak.net http://codespeak.net/mailman/listinfo/py-svn