Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update parameterized to 0.9.0 #502

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

pyup-bot
Copy link
Collaborator

This PR updates parameterized from 0.7.0 to 0.9.0.

Changelog

0.9.0

* Drop support for Python 2.X, 3.5, and 3.6;
   Add support for Python 3.10, 3.11
   (https://github.com/wolever/parameterized/pull/153)
 * Modernize from setup.py -> pyproject.toml
   (https://github.com/wolever/parameterized/pull/147; thanks KOLANICH)
 * Add ``namespace`` argument to ``parameterize.expand``
   (https://github.com/wolever/parameterized/pull/148; thanks KOLANICH)
 * Add support for ``IsolatedAsyncioTestCase``
   (https://github.com/wolever/parameterized/pull/135; thanks Ronserruya)
 * Work around for bug bpo-40126 in older versions of ``mock``
   (https://github.com/wolever/parameterized/pull/129; thanks alexpizarroj)
 * Allow str, bytes, and any non-iterable input to be passed to
   ``parameterized`` without wrapping in a tuple
   (https://github.com/wolever/parameterized/pull/157)
 * Fix class-level ``mock.patch.multiple``
   (https://github.com/wolever/parameterized/issues/138; thanks ArthurGW)

0.8.1

* Add README and LICENSE to pypi sdist package
   (https://github.com/wolever/parameterized/pull/114; thanks chohner)

0.8.0

* Handle camelCase test names. This is an ever-so-slightly backwards
   incompatible change, as the method for determining which methods are
   test methods has changed from ``method_name.startswith("test_")`` to
   ``method_name.startswith("test")``. The latter is the behavior of
   the ``unittest`` module.
   (thanks bobwalker99; https://github.com/wolever/parameterized/pull/106)
 * Fix arguments to skip_on_empty helper (thanks bhavyakjain;
   https://github.com/wolever/parameterized/pull/104)

0.7.5

* Fix crash on Python 2.7 with unicode docstrings
   (https://github.com/wolever/parameterized/issues/109)
 * Replace inspect.stack() with faster inspect.currentframe()
   (https://github.com/wolever/parameterized/issues/107)
 * Add a __version__ string to the package
   (https://github.com/wolever/parameterized/issues/103)

0.7.4

* Add ``class_name_func`` option to ``parameterized_class``
 * Fix arguments being passed to skip_on_empty_helper (thanks gaf3;
   https://github.com/wolever/parameterized/issues/57)
 * Fix tests on Python 3.8.2 (thanks Ikke;
   https://github.com/wolever/parameterized/pull/99)

0.7.3

* Fix some typos (thanks LWprogramming, jinnovation;
   https://github.com/wolever/parameterized/pull/77,
   https://github.com/wolever/parameterized/pull/80)
 * Fix unicode handling in setup.py (thanks sliwinski-milosz;
   https://github.com/wolever/parameterized/pull/89)
 * Fix Python 3.9 compat (thanks vstinner;
   https://github.com/wolever/parameterized/pull/94)

0.7.2

* Add `parameterized_class` name function callback support (thanks
   duncwebb et al; https://github.com/wolever/parameterized/pull/74)

0.7.1

* Fix 73: calling `setUp` and `tearDown` in parameterized classes
Links

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant