Revisions of python-testfixtures

buildservice-autocommit accepted request 1132550 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 54)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) accepted request 1132526 from Eric Schirra's avatar Eric Schirra (ecsos) (revision 53)
- Add %{?sle15_python_module_pythons}
buildservice-autocommit accepted request 1129684 from Steve Kowalik's avatar Steve Kowalik (StevenK) (revision 52)
baserev update by copy to link target
Steve Kowalik's avatar Steve Kowalik (StevenK) committed (revision 51)
- Update to 7.2.2:
  * Fix bug in support for :class:`os.PathLike` arguments to
    :class:`popen.MockPopen`.
  * Added missing support for :class:`os.PathLike` arguments to
    :class:`popen.MockPopen`.
  * Add ``order_matters`` parameter to :class:`ShouldWarn`.
  * Implement new IDE and static-analysis ways of :doc:`mocking <mocking>`
    including additional parameters to :meth:`~Replacer.replace` along with
    the :any:`replace_on_class`, :any:`replace_in_module` and
    :any:`replace_in_environ` context managers.
- Add patch path-comparsion-312.patch:
  * Compare paths string-wise, due to Python 3.12 changes.
- Switch to autosetup and pyproject macros.
- Remove now unneeded Python 3.6 special-casing.
buildservice-autocommit accepted request 1042863 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 50)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) accepted request 1042760 from Yogalakshmi Arunachalam's avatar Yogalakshmi Arunachalam (yarunachalam) (revision 49)
- Update to 7.0.4 
  * Remove py.typed file: neither mypy nor testfixtures are ready for this file to be present.
buildservice-autocommit accepted request 1035575 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 48)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) committed (revision 47)
Clean up SPEC file
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 1034933 from Yogalakshmi Arunachalam's avatar Yogalakshmi Arunachalam (yarunachalam) (revision 46)
- Update to 7.0.3 (3 Nov 2022)
  * Further bugfixes around self-referential datastructures and :func:`compare`.
- Update to 7.0.2 (1 Nov 2022)
  * Reinstate support for self-referential data structures in :func:`compare`. The new implementation provides more clarity about
    what's going on and also ignores more immutable data types.
- Update to 7.0.1 (1 Nov 2022)
  * Remove non-functional support for self-referential data structures in :func:`compare`. The functionality didn't work but did cause
    erroneous reported equality of values in dictionaries that were actually not equal.
buildservice-autocommit accepted request 1008127 from Daniel Garcia's avatar Daniel Garcia (dgarcia) (revision 45)
baserev update by copy to link target
Daniel Garcia's avatar Daniel Garcia (dgarcia) committed (revision 44)
- Fix patch filename in changes it's testfixtures-sybil3-py310.patch
Daniel Garcia's avatar Daniel Garcia (dgarcia) committed (revision 43)
- Remove testfixtures-pr167-sybil3.patch, it's included in upstream now.
- Update to 7.0.0
  * Refresh documentation.
  * Add type annotations.
  * Drop support for Python 2. The minimum supported Python version is now 3.6.
  * Sybil 3 is now the minimum supported version if you use
    :class:`~.sybil.FileParser`.
  * Rename and refactor the date and time mocks, they are now :any:`mock_date`,
    :any:`mock_datetime` and :any:`mock_time`. :func:`test_date`,
    :func:`test_datetime` and :func:`test_time` are still present as aliases
    but are now deprecated.
  * Add :meth:`TempDirectory.as_string`, :meth:`TempDirectory.as_path` and
    :meth:`TempDirectory.as_local`. :meth:`TempDirectory.getpath` is now
    deprecated.
  * :class:`TempDirectory` can now be used to wrap existing directories.
  * Fixed a bug where :any:`OutputCapture.captured` returned bytes instead of a
    string with fd=True.
  * The deprecated strict option to :class:`Comparison` has been removed, use
    the partial option instead.
  * The deprecated :meth:`TempDirectory.check`, :meth:`TempDirectory.check_dir`
    and :meth:`TempDirectory.check_all` methods have been removed.
- 6.18.5 (1 Mar 2022)
  * Fix bug in detection of Mock backport.
- 6.18.4 (25 Feb 2022)
  * Ensure compatibility with Sybil 2 and Sybil 3 along with pytest 6 and
    pytest 7.
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 942771 from Benjamin Greiner's avatar Benjamin Greiner (bnavigator) (revision 42)
- Replace testfixtures-pr167-sybil3.patch by
  testfixtures-sybil3-py310.patch -- gh#simplistix/testfixtures#167
- Don't test Django on python36: Django 4 dropped support for
  Python < 3.8
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 941916 from Benjamin Greiner's avatar Benjamin Greiner (bnavigator) (revision 41)
- Add testfixtures-pr167-sybil3.patch
  * gh#simplistix/testfixtures#167
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 923887 from Benjamin Greiner's avatar Benjamin Greiner (bnavigator) (revision 40)
- update to 6.18.3
  * Fix bug when using :func:`compare` on two regular expressions
    that have very long patterns.
  * Fix bug that meant :class:`LogCapture` didn't preserve or
    provide a clean testing environment for filters.
  * Fix bug when showing differences between mappings found by
    :func:`compare` when mismatching values contained the same
    number more than once.
  * Add support for lazy resolution of prefix and suffix when using
    :func:`compare`.
- Drop appease-django-320.patch merged upstream
- Drop unresolvable Python 2 build
buildservice-autocommit accepted request 891895 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 39)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 38)
- update to 6.17.1
  - Fix bug where bug where duplicated entries in an ordered but partial
    :class:`SequenceComparison` could result in a failed match.
buildservice-autocommit accepted request 888956 from Steve Kowalik's avatar Steve Kowalik (StevenK) (revision 37)
baserev update by copy to link target
Steve Kowalik's avatar Steve Kowalik (StevenK) committed (revision 36)
- Add appease-django-320.patch:
  * Upstream patch to avoid a test failure with building with Django 3.2
Steve Kowalik's avatar Steve Kowalik (StevenK) committed (revision 35)
- Skip a test that has some fundamental disagreements with Django 3.2.
Displaying revisions 1 - 20 of 54
openSUSE Build Service is sponsored by