Hello community, here is the log from the commit of package python-tap.py for openSUSE:Factory checked in at 2019-09-23 12:32:35 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-tap.py (Old) and /work/SRC/openSUSE:Factory/.python-tap.py.new.7948 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-tap.py" Mon Sep 23 12:32:35 2019 rev:2 rq:731649 version:2.6.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-tap.py/python-tap.py.changes 2019-03-22 15:10:25.905335455 +0100 +++ /work/SRC/openSUSE:Factory/.python-tap.py.new.7948/python-tap.py.changes 2019-09-23 12:32:40.461656781 +0200 @@ -1,0 +2,6 @@ +Wed Sep 18 07:28:19 UTC 2019 - Tomáš Chvátal <[email protected]> + +- Update to 2.6.1: + * Fix to work with new releases of more-itertools + +------------------------------------------------------------------- Old: ---- tap.py-2.5.tar.gz New: ---- tap.py-2.6.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-tap.py.spec ++++++ --- /var/tmp/diff_new_pack.ULVgNV/_old 2019-09-23 12:32:42.005656527 +0200 +++ /var/tmp/diff_new_pack.ULVgNV/_new 2019-09-23 12:32:42.009656527 +0200 @@ -18,7 +18,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-tap.py -Version: 2.5 +Version: 2.6.1 Release: 0 Summary: Test Anything Protocol (TAP) tools License: BSD-2-Clause ++++++ tap.py-2.5.tar.gz -> tap.py-2.6.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/LICENSE new/tap.py-2.6.1/LICENSE --- old/tap.py-2.5/LICENSE 2018-01-07 03:13:00.000000000 +0100 +++ new/tap.py-2.6.1/LICENSE 2019-09-17 02:58:18.000000000 +0200 @@ -1,4 +1,4 @@ -Copyright (c) 2018, Matt Layman and contributors. See AUTHORS for more details. +Copyright (c) 2019, Matt Layman and contributors. See AUTHORS for more details. All rights reserved. Redistribution and use in source and binary forms, with or without diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/PKG-INFO new/tap.py-2.6.1/PKG-INFO --- old/tap.py-2.5/PKG-INFO 2018-09-15 02:18:40.000000000 +0200 +++ new/tap.py-2.6.1/PKG-INFO 2019-09-17 15:36:47.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: tap.py -Version: 2.5 +Version: 2.6.1 Summary: Test Anything Protocol (TAP) tools Home-page: https://github.com/python-tap/tappy Author: Matt Layman @@ -19,6 +19,17 @@ Releases ======== + Version 2.6.1, Released September 17, 2019 + ------------------------------------------ + + * Fix TAP version 13 support from more-itertools behavior change. + + Version 2.6, Released September 16, 2019 + ---------------------------------------- + + * Add support for Python 3.7. + * Drop support for Python 3.4 (it is end-of-life). + Version 2.5, Released September 15, 2018 ---------------------------------------- @@ -175,9 +186,9 @@ Classifier: License :: OSI Approved :: BSD License Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python :: 2.7 -Classifier: Programming Language :: Python :: 3.4 Classifier: Programming Language :: Python :: 3.5 Classifier: Programming Language :: Python :: 3.6 +Classifier: Programming Language :: Python :: 3.7 Classifier: Programming Language :: Python :: Implementation :: PyPy Classifier: Topic :: Software Development :: Testing Provides-Extra: yaml diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/Pipfile new/tap.py-2.6.1/Pipfile --- old/tap.py-2.5/Pipfile 2018-09-15 01:32:59.000000000 +0200 +++ new/tap.py-2.6.1/Pipfile 2019-01-23 19:31:06.000000000 +0100 @@ -6,7 +6,7 @@ [dev-packages] Babel = "*" coverage = "*" -"flake8" = "*" +"flake8" = "==3.6.0" mock = "*" requests = "*" Sphinx = "*" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/README.md new/tap.py-2.6.1/README.md --- old/tap.py-2.5/README.md 2018-05-15 15:23:06.000000000 +0200 +++ new/tap.py-2.6.1/README.md 2019-09-17 03:43:18.000000000 +0200 @@ -29,9 +29,9 @@ tappy is available for download from [PyPI][pypi]. tappy is currently supported on Python 2.7, -3.4, 3.5, 3.6, +3.7, and PyPy. It is continuously tested on Linux, OS X, and Windows. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/docs/conf.py new/tap.py-2.6.1/docs/conf.py --- old/tap.py-2.5/docs/conf.py 2018-01-07 03:13:55.000000000 +0100 +++ new/tap.py-2.6.1/docs/conf.py 2019-09-17 02:58:18.000000000 +0200 @@ -52,7 +52,7 @@ # General information about the project. project = u'tappy' -copyright = u'2018, Matt Layman and contributors' +copyright = u'2019, Matt Layman and contributors' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/docs/index.rst new/tap.py-2.6.1/docs/index.rst --- old/tap.py-2.5/docs/index.rst 2018-05-15 15:23:06.000000000 +0200 +++ new/tap.py-2.6.1/docs/index.rst 2019-09-17 03:43:18.000000000 +0200 @@ -24,7 +24,11 @@ tappy is available for download from `PyPI <https://pypi.python.org/pypi/tap.py>`_. tappy is currently supported on -Python 2.7, 3.4, 3.5, 3.6, and PyPy. +Python 2.7, +3.5, +3.6, +3.7, +and PyPy. It is continuously tested on Linux, OS X, and Windows. .. code-block:: console diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/docs/releases.rst new/tap.py-2.6.1/docs/releases.rst --- old/tap.py-2.5/docs/releases.rst 2018-09-15 02:17:54.000000000 +0200 +++ new/tap.py-2.6.1/docs/releases.rst 2019-09-17 15:32:21.000000000 +0200 @@ -1,6 +1,17 @@ Releases ======== +Version 2.6.1, Released September 17, 2019 +------------------------------------------ + +* Fix TAP version 13 support from more-itertools behavior change. + +Version 2.6, Released September 16, 2019 +---------------------------------------- + +* Add support for Python 3.7. +* Drop support for Python 3.4 (it is end-of-life). + Version 2.5, Released September 15, 2018 ---------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/setup.py new/tap.py-2.6.1/setup.py --- old/tap.py-2.5/setup.py 2018-09-15 01:38:49.000000000 +0200 +++ new/tap.py-2.6.1/setup.py 2019-09-17 03:43:18.000000000 +0200 @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Matt Layman and contributors +# Copyright (c) 2019, Matt Layman and contributors """ tappy is a set of tools for working with the `Test Anything Protocol (TAP) <http://testanything.org/>`_, a line based test protocol for recording test @@ -67,9 +67,9 @@ "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python :: 2.7", - "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Testing", ], diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/tap/__init__.py new/tap.py-2.6.1/tap/__init__.py --- old/tap.py-2.5/tap/__init__.py 2018-09-15 02:10:11.000000000 +0200 +++ new/tap.py-2.6.1/tap/__init__.py 2019-09-17 15:33:08.000000000 +0200 @@ -1,6 +1,6 @@ -# Copyright (c) 2018, Matt Layman and contributors +# Copyright (c) 2019, Matt Layman and contributors from .runner import TAPTestRunner __all__ = ["TAPTestRunner"] -__version__ = "2.5" +__version__ = "2.6.1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/tap/adapter.py new/tap.py-2.6.1/tap/adapter.py --- old/tap.py-2.5/tap/adapter.py 2018-09-15 01:40:13.000000000 +0200 +++ new/tap.py-2.6.1/tap/adapter.py 2019-09-17 02:58:18.000000000 +0200 @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Matt Layman and contributors +# Copyright (c) 2019, Matt Layman and contributors class Adapter(object): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/tap/directive.py new/tap.py-2.6.1/tap/directive.py --- old/tap.py-2.5/tap/directive.py 2018-09-15 01:40:13.000000000 +0200 +++ new/tap.py-2.6.1/tap/directive.py 2019-09-17 02:58:18.000000000 +0200 @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Matt Layman and contributors +# Copyright (c) 2019, Matt Layman and contributors import re @@ -23,7 +23,7 @@ """Initialize the directive by parsing the text. The text is assumed to be everything after a '#\s*' on a result line. - """ + """ # noqa: flake8 is grumbling about the \s in the description. self._text = text self._skip = False self._todo = False diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/tap/i18n.py new/tap.py-2.6.1/tap/i18n.py --- old/tap.py-2.5/tap/i18n.py 2018-09-15 01:40:13.000000000 +0200 +++ new/tap.py-2.6.1/tap/i18n.py 2019-09-17 02:58:18.000000000 +0200 @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Matt Layman and contributors +# Copyright (c) 2019, Matt Layman and contributors import gettext import os diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/tap/line.py new/tap.py-2.6.1/tap/line.py --- old/tap.py-2.5/tap/line.py 2018-09-15 01:40:13.000000000 +0200 +++ new/tap.py-2.6.1/tap/line.py 2019-09-17 02:58:18.000000000 +0200 @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Matt Layman and contributors +# Copyright (c) 2019, Matt Layman and contributors try: import yaml diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/tap/loader.py new/tap.py-2.6.1/tap/loader.py --- old/tap.py-2.5/tap/loader.py 2018-09-15 01:40:13.000000000 +0200 +++ new/tap.py-2.6.1/tap/loader.py 2019-09-17 02:58:18.000000000 +0200 @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Matt Layman and contributors +# Copyright (c) 2019, Matt Layman and contributors import os import unittest diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/tap/main.py new/tap.py-2.6.1/tap/main.py --- old/tap.py-2.5/tap/main.py 2018-09-15 01:40:13.000000000 +0200 +++ new/tap.py-2.6.1/tap/main.py 2019-09-17 02:58:18.000000000 +0200 @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Matt Layman and contributors +# Copyright (c) 2019, Matt Layman and contributors import argparse import sys diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/tap/parser.py new/tap.py-2.6.1/tap/parser.py --- old/tap.py-2.5/tap/parser.py 2018-09-15 01:43:46.000000000 +0200 +++ new/tap.py-2.6.1/tap/parser.py 2019-09-17 15:30:59.000000000 +0200 @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Matt Layman and contributors +# Copyright (c) 2019, Matt Layman and contributors from io import StringIO import itertools @@ -183,12 +183,12 @@ raw_yaml = [] indent_match = re.compile(r"^{}".format(indent)) try: - fh.next() + next(fh) while indent_match.match(fh.peek()): - raw_yaml.append(fh.next().replace(indent, "", 1)) + raw_yaml.append(next(fh).replace(indent, "", 1)) # check for the end and stop adding yaml if encountered if self.yaml_block_end.match(fh.peek()): - fh.next() + next(fh) break except StopIteration: pass diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/tap/rules.py new/tap.py-2.6.1/tap/rules.py --- old/tap.py-2.5/tap/rules.py 2018-09-15 01:43:58.000000000 +0200 +++ new/tap.py-2.6.1/tap/rules.py 2019-09-17 02:58:18.000000000 +0200 @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Matt Layman and contributors +# Copyright (c) 2019, Matt Layman and contributors from tap.adapter import Adapter from tap.directive import Directive diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/tap/runner.py new/tap.py-2.6.1/tap/runner.py --- old/tap.py-2.5/tap/runner.py 2018-09-15 01:40:13.000000000 +0200 +++ new/tap.py-2.6.1/tap/runner.py 2019-09-17 02:58:18.000000000 +0200 @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Matt Layman and contributors +# Copyright (c) 2019, Matt Layman and contributors import os from unittest import TextTestResult, TextTestRunner diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/tap/tests/__init__.py new/tap.py-2.6.1/tap/tests/__init__.py --- old/tap.py-2.5/tap/tests/__init__.py 2018-01-07 03:13:55.000000000 +0100 +++ new/tap.py-2.6.1/tap/tests/__init__.py 2019-09-17 02:58:18.000000000 +0200 @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Matt Layman and contributors +# Copyright (c) 2019, Matt Layman and contributors """Tests for tappy""" from tap.tests.testcase import TestCase # NOQA diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/tap/tests/factory.py new/tap.py-2.6.1/tap/tests/factory.py --- old/tap.py-2.5/tap/tests/factory.py 2018-09-15 01:40:13.000000000 +0200 +++ new/tap.py-2.6.1/tap/tests/factory.py 2019-09-17 02:58:18.000000000 +0200 @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Matt Layman and contributors +# Copyright (c) 2019, Matt Layman and contributors import sys import tempfile diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/tap/tests/run.py new/tap.py-2.6.1/tap/tests/run.py --- old/tap.py-2.5/tap/tests/run.py 2018-09-15 01:40:13.000000000 +0200 +++ new/tap.py-2.6.1/tap/tests/run.py 2019-09-17 15:30:59.000000000 +0200 @@ -1,6 +1,7 @@ -# Copyright (c) 2018, Matt Layman and contributors +# Copyright (c) 2019, Matt Layman and contributors import os +import sys import unittest from tap import TAPTestRunner @@ -12,4 +13,6 @@ runner = TAPTestRunner() runner.set_outdir("testout") runner.set_format("Hi: {method_name} - {short_description}") - runner.run(tests) + result = runner.run(tests) + status = 0 if result.wasSuccessful() else 1 + sys.exit(status) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/tap/tests/test_adapter.py new/tap.py-2.6.1/tap/tests/test_adapter.py --- old/tap.py-2.5/tap/tests/test_adapter.py 2018-09-15 01:40:13.000000000 +0200 +++ new/tap.py-2.6.1/tap/tests/test_adapter.py 2019-09-17 02:58:18.000000000 +0200 @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Matt Layman and contributors +# Copyright (c) 2019, Matt Layman and contributors try: from unittest import mock diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/tap/tests/test_directive.py new/tap.py-2.6.1/tap/tests/test_directive.py --- old/tap.py-2.5/tap/tests/test_directive.py 2018-09-15 01:40:13.000000000 +0200 +++ new/tap.py-2.6.1/tap/tests/test_directive.py 2019-09-17 02:58:18.000000000 +0200 @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Matt Layman and contributors +# Copyright (c) 2019, Matt Layman and contributors import unittest diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/tap/tests/test_line.py new/tap.py-2.6.1/tap/tests/test_line.py --- old/tap.py-2.5/tap/tests/test_line.py 2018-09-15 01:40:13.000000000 +0200 +++ new/tap.py-2.6.1/tap/tests/test_line.py 2019-09-17 02:58:18.000000000 +0200 @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Matt Layman and contributors +# Copyright (c) 2019, Matt Layman and contributors import unittest diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/tap/tests/test_loader.py new/tap.py-2.6.1/tap/tests/test_loader.py --- old/tap.py-2.5/tap/tests/test_loader.py 2018-09-15 01:40:13.000000000 +0200 +++ new/tap.py-2.6.1/tap/tests/test_loader.py 2019-09-17 02:58:18.000000000 +0200 @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Matt Layman and contributors +# Copyright (c) 2019, Matt Layman and contributors import inspect from io import StringIO diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/tap/tests/test_main.py new/tap.py-2.6.1/tap/tests/test_main.py --- old/tap.py-2.5/tap/tests/test_main.py 2018-09-15 01:40:13.000000000 +0200 +++ new/tap.py-2.6.1/tap/tests/test_main.py 2019-09-17 02:58:18.000000000 +0200 @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Matt Layman and contributors +# Copyright (c) 2019, Matt Layman and contributors import argparse import os diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/tap/tests/test_parser.py new/tap.py-2.6.1/tap/tests/test_parser.py --- old/tap.py-2.5/tap/tests/test_parser.py 2018-09-15 01:40:13.000000000 +0200 +++ new/tap.py-2.6.1/tap/tests/test_parser.py 2019-09-17 15:30:59.000000000 +0200 @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Matt Layman and contributors +# Copyright (c) 2019, Matt Layman and contributors from contextlib import contextmanager import inspect @@ -239,7 +239,7 @@ import yaml from more_itertools import peekable # noqa - converted_yaml = yaml.load(u"""test: sample yaml""") + converted_yaml = yaml.safe_load(u"""test: sample yaml""") self.assertEqual(4, len(lines)) self.assertEqual(13, lines[0].version) self.assertEqual(converted_yaml, lines[2].yaml_block) @@ -271,7 +271,7 @@ import yaml from more_itertools import peekable # noqa - converted_yaml = yaml.load(u"""test: sample yaml""") + converted_yaml = yaml.safe_load(u"""test: sample yaml""") self.assertEqual(4, len(lines)) self.assertEqual(13, lines[0].version) self.assertEqual(converted_yaml, lines[2].yaml_block) @@ -308,7 +308,7 @@ import yaml from more_itertools import peekable # noqa - converted_yaml = yaml.load( + converted_yaml = yaml.safe_load( u""" message: test severity: fail diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/tap/tests/test_result.py new/tap.py-2.6.1/tap/tests/test_result.py --- old/tap.py-2.5/tap/tests/test_result.py 2018-09-15 01:40:13.000000000 +0200 +++ new/tap.py-2.6.1/tap/tests/test_result.py 2019-09-17 02:58:18.000000000 +0200 @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Matt Layman and contributors +# Copyright (c) 2019, Matt Layman and contributors import os import unittest diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/tap/tests/test_rules.py new/tap.py-2.6.1/tap/tests/test_rules.py --- old/tap.py-2.5/tap/tests/test_rules.py 2018-09-15 01:47:14.000000000 +0200 +++ new/tap.py-2.6.1/tap/tests/test_rules.py 2019-09-17 02:58:18.000000000 +0200 @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Matt Layman and contributors +# Copyright (c) 2019, Matt Layman and contributors import unittest diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/tap/tests/test_runner.py new/tap.py-2.6.1/tap/tests/test_runner.py --- old/tap.py-2.5/tap/tests/test_runner.py 2018-09-15 01:40:13.000000000 +0200 +++ new/tap.py-2.6.1/tap/tests/test_runner.py 2019-09-17 02:58:18.000000000 +0200 @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Matt Layman and contributors +# Copyright (c) 2019, Matt Layman and contributors import os import sys diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/tap/tests/test_tracker.py new/tap.py-2.6.1/tap/tests/test_tracker.py --- old/tap.py-2.5/tap/tests/test_tracker.py 2018-09-15 01:40:13.000000000 +0200 +++ new/tap.py-2.6.1/tap/tests/test_tracker.py 2019-09-17 02:58:18.000000000 +0200 @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Matt Layman and contributors +# Copyright (c) 2019, Matt Layman and contributors import inspect import os diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/tap/tests/testcase.py new/tap.py-2.6.1/tap/tests/testcase.py --- old/tap.py-2.5/tap/tests/testcase.py 2018-09-15 01:40:13.000000000 +0200 +++ new/tap.py-2.6.1/tap/tests/testcase.py 2019-09-17 02:58:18.000000000 +0200 @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Matt Layman and contributors +# Copyright (c) 2019, Matt Layman and contributors import unittest diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/tap/tracker.py new/tap.py-2.6.1/tap/tracker.py --- old/tap.py-2.5/tap/tracker.py 2018-09-15 01:51:38.000000000 +0200 +++ new/tap.py-2.6.1/tap/tracker.py 2019-09-17 02:58:18.000000000 +0200 @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Matt Layman and contributors +# Copyright (c) 2019, Matt Layman and contributors from __future__ import print_function import os diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tap.py-2.5/tap.py.egg-info/PKG-INFO new/tap.py-2.6.1/tap.py.egg-info/PKG-INFO --- old/tap.py-2.5/tap.py.egg-info/PKG-INFO 2018-09-15 02:18:40.000000000 +0200 +++ new/tap.py-2.6.1/tap.py.egg-info/PKG-INFO 2019-09-17 15:36:47.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: tap.py -Version: 2.5 +Version: 2.6.1 Summary: Test Anything Protocol (TAP) tools Home-page: https://github.com/python-tap/tappy Author: Matt Layman @@ -19,6 +19,17 @@ Releases ======== + Version 2.6.1, Released September 17, 2019 + ------------------------------------------ + + * Fix TAP version 13 support from more-itertools behavior change. + + Version 2.6, Released September 16, 2019 + ---------------------------------------- + + * Add support for Python 3.7. + * Drop support for Python 3.4 (it is end-of-life). + Version 2.5, Released September 15, 2018 ---------------------------------------- @@ -175,9 +186,9 @@ Classifier: License :: OSI Approved :: BSD License Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python :: 2.7 -Classifier: Programming Language :: Python :: 3.4 Classifier: Programming Language :: Python :: 3.5 Classifier: Programming Language :: Python :: 3.6 +Classifier: Programming Language :: Python :: 3.7 Classifier: Programming Language :: Python :: Implementation :: PyPy Classifier: Topic :: Software Development :: Testing Provides-Extra: yaml
