- Include*.md files in wheel These are needed by the test suite, which is also included in the wheel.
- Fix tests on python3.11
- Update some web links
- Update pyinstaller to 6.1.0 for python >= 3.11 support
- doctest: use outputchecker argument also in debug mode. Fixes #38
- Remove references to old "six" module
- Remove silly PyPI version badge.
- Modernize internal project structure; drop tox; no user-visible changes (hopefully).
- Rework coverage badge generation.
- Drop Travis CI badge (the project is using GitHub for CI now)
Fix missing file in release.
Fix brown-bag release.
- Fix test detection in Python 2 which was broken since 1.10.0. (#20)
- Add Python 3.9 and 3.10 to tox config.
- Add a Makefile to centeralized development activities.
- Add support for PyPy3.
- Fix DeprecationWarning about 'U' mode under Python 3.
- Drop Python 2.6 and 3.3 support. Add testing and support for Python 3.6 and 3.7.
- You can now use Manuel with the nose and pytest test runners by defining Manuel tests inside unittest.TestCase classes.
- Added support for Python 3.5 and Python 3.6.
- Dropped support for Python 2.6
- Fixed ResourceWarnings under Python 3.
- Added support for PyPy and Python 3.4.
- Drop official support for Python 3.1 and 3.2.
- Fix odd ImportError problems when used with tox and coverage.
- Fix parsing of reST codeblock options with hyphens.
- Fixed release issues.
- Updated copyright and license to reflect recent Zope Foundation release of claim on the project.
- Fix brown-bag release.
- Added support for docutils-style code blocks and options there-of.
- Fixed a bug that made doctests fail if sys.argv contained the string "-v".
- Ported to Python 3, still works in 2.6 and up.
- Removed the dependency on zope.testrunner
- Added the ability to run the tests using "setup.py test".
- Fixed a bug that caused extra example evaluation if multiple doctest manuels were used at once (e.g. to execute Python and shell code in the same document).
- Added a
parser
keyword argument to manuel.doctest.Manuel to allow a custom doctest parser to be passed in. This allows easily adding support for other languages or other (but similar) example syntaxes.
- Respect test runner reporting switches (e.g., zope.testrunner's --ndiff switch)
- Fixed a bug that caused post-mortem debugging to not work most of the time.
- Made manuel.testing.TestCase.id return a sensible textual value at all times. This keeps Twisted's trial testrunner happy.
- Conform to repository policy.
- Switch to using zope.testrunner instead of zope.testing due to API changes. zope.testing is now only required for testing.
- fix the way globs are handled; fixes https://bugs.launchpad.net/manuel/+bug/582482
- fix a SyntaxError when running the tests under Python 2.5
- improved error message for improperly indented capture directive
- Manuel no longer uses the now depricated zope.testing.doctest (requires zope.testing 3.9.1 or newer)
- fix a bug that caused Manuel to choke on empty documents (patch submitted by Bjorn Tillenius)
- add a pointer to Manuel's Subversion repo on the PyPI page
- add an optional parameter that allows a custom TestCase class to be passed to TestSuite() (patch submitted by Bjorn Tillenius)
- use newer setuptools (one compatible with Subversion 1.6) so built distributions include all files
- fix a small doc thinko
- fix the code-block handler to allow :linenos:
- open files in universal newlines mode
- fix a bug that caused instances of zope.testing.doctest.Example (and instances of subclasses of the same) to be silently ignored.
- fix line number reporting for test failures
- Python 2.4 compatability fix
- add the ability to identify and run subsets of documents (using the -t switch of zope.testing's testrunner for example)
- major docs improvements
- added several new plug-ins
- add a larger example of using Manuel (table-example.txt)
- make the test suite factory function try harder to find the calling module
- fix a bug in the order regions are evaluated
- add a Manuel object that can evaluate Python code in ".. code-block:: python" regions of a reST document
- make the global state ("globs") shared between all evaluators, not just doctest
- make zope.testing's testrunner recognized the enhanced, doctest-style errors generated by Manuel
- rework the evaluaters to work region-by-region instead of on the entire document
- switch to using regular Python classes for Manuel objects instead of previous prototype-y style
- first release