Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python-six-doc-1.14.0-lp152.4.3.1 RPM for noarch

From OpenSuSE Ports Leap 15.2 updates for noarch

Name: python-six-doc Distribution: openSUSE Leap 15.2
Version: 1.14.0 Vendor: openSUSE
Release: lp152.4.3.1 Build date: Mon Mar 1 10:17:24 2021
Group: Documentation/HTML Build host: obs-arm-1
Size: 660732 Source RPM: python-six-test-1.14.0-lp152.4.3.1.src.rpm
Packager: http://bugs.opensuse.org
Url: http://pypi.python.org/pypi/six/
Summary: Documentation files for python-six-test
Six is a Python 2 and 3 compatibility library. It provides utility
functions for smoothing over the differences between the Python
versions with the goal of writing Python code that is compatible on
both Python versions.

This package provides documentation for python-six-test.

Provides

Requires

License

MIT

Changelog

* Tue Mar 10 2020 Tomáš Chvátal <tchvatal@suse.com>
  - Do not cause buildcycle with previous change but rather
    install the egg-info prepared metadata from the tarball
* Mon Mar 09 2020 Dirk Mueller <dmueller@suse.com>
  - use setuptools for building to support pip 10.x (bsc#1166139)
* Tue Jan 21 2020 Ondřej Súkup <mimi.vx@gmail.com>
  - update to 1.14.0
    * Add `six.assertNotRegex`
    * `six.moves._dummy_thread` now points to the `_thread` module on
      Python 3.9+. Python 3.7 and later requires threading and deprecated the
      `_dummy_thread` module
    * Remove support for Python 2.6 and Python 3.2
    * `six.wraps` now ignores missing attributes
* Thu Jan 02 2020 Tomáš Chvátal <tchvatal@suse.com>
  - Pull in dbm/gdbm module from python for testing
* Fri Dec 20 2019 Dirk Mueller <dmueller@suse.com>
  - update to 0.13.0:
    - Issue #298, pull request #299: Add `six.moves.dbm_ndbm`.
    - Issue #155: Add `six.moves.collections_abc`, which aliases the `collections`
      module on Python 2-3.2 and the `collections.abc` on Python 3.3 and greater.
    - Pull request #304: Re-add distutils fallback in `setup.py`.
    - Pull request #305: On Python 3.7, `with_metaclass` supports classes using PEP
* Thu Jul 18 2019 Tomáš Chvátal <tchvatal@suse.com>
  - Simplify the pytest call
* Tue Jun 11 2019 Tomáš Chvátal <tchvatal@suse.com>
  - Fix pytest call
  - Fixdocumentation package generating
* Fri Jan 25 2019 Neal Gompa <ngompa13@gmail.com>
  - Change %pretrans back to %pre to fix bootstrap issue
    boo#1123064 bsc#1143893
* Thu Jan 17 2019 Tomáš Chvátal <tchvatal@suse.com>
  - Require just base python module, even full python is too much
    and it is not required here
* Mon Dec 10 2018 mcepl@suse.com
  - Update to 0.12.0:
    * `six.add_metaclass` now preserves `__qualname__` from the
      original class.
    * Add `six.ensure_binary`, `six.ensure_text`, and
      `six.ensure_str`.
  - Because of cyclical dependencies between six and Sphinx, we
    need to to do multibuild.
* Mon Sep 03 2018 Hans-Peter Jansen <hpj@urpla.net>
  - remove egg-info directory in %pretrans
  - fix egg-info directory pattern
  - match any version of egg-info for a certain python version
* Sat Aug 18 2018 Matěj Cepl <mcepl@suse.com>
  - Break the cycilical dependency on python-setuptools.
* Fri Aug 10 2018 tchvatal@suse.com
  - Remove argparse dependency
* Mon Oct 16 2017 jmatejek@suse.com
  - remove egg-info directory before installation if it exists,
    because setuptools produce directory and six switched to distutils
    that produce a file
    (and because rpm can't handle that by itself)
    fixes bsc#1057496
* Thu Sep 28 2017 tbechtold@suse.com
  - Fix Source url
* Sat Sep 23 2017 arun@gmx.de
  - README->README.rst, add CHANGES
  - update to version 1.11.0:
    * Pull request #178: `with_metaclass` now properly proxies
      `__prepare__` to the underlying metaclass.
    * Pull request #191: Allow `with_metaclass` to work with metaclasses
      implemented in C.
    * Pull request #203: Add parse_http_list and parse_keqv_list to
      moved urllib.request.
    * Pull request #172 and issue #171: Add unquote_to_bytes to moved
      urllib.parse.
    * Pull request #167: Add `six.moves.getoutput`.
    * Pull request #80: Add `six.moves.urllib_parse.splitvalue`.
    * Pull request #75: Add `six.moves.email_mime_image`.
    * Pull request #72: Avoid creating reference cycles through
      tracebacks in `reraise`.
* Wed Oct 05 2016 jmatejek@suse.com
  - update for multipython build
* Tue Feb 09 2016 olaf@aepfle.de
  - Restore buildarch for SLE_11 to fix build
* Tue Jan 19 2016 toddrme2178@gmail.com
  - Run tests in -doc package to avoid dependency loops
    * python-setuptools -> python-six -> python-py -> python-setuptools
    * python-setuptools -> python-six -> python-pytest -> python-setuptools
  - Actually run the tests.  They weren't previously being run.
* Fri Oct 09 2015 mcihar@suse.cz
  - Update to 1.10.0:
    - Issue #122: Improve the performance of `six.int2byte` on Python 3.
    - Pull request #55 and issue #99: Don't add the `winreg` module to `six.moves`
      on non-Windows platforms.
    - Pull request #60 and issue #108: Add `six.moves.getcwd` and
      `six.moves.getcwdu`.
    - Pull request #64: Add `create_unbound_method` to create unbound methods.
* Tue Aug 04 2015 dimstar@opensuse.org
  - Delete the system egg-info during pre phase: older versions of
    the package installed it as a directory, the latest update
    creates a file, and rpm has known issues with replacing this.
* Wed Jul 29 2015 toddrme2178@gmail.com
  - Make tests conditional to avoid dependency loop.
* Thu Apr 16 2015 hpj@urpla.net
  - don't build/package documentation here: it breaks due to cyclic
    requirements between six and Sphinx, move doc in its own package
* Sat Jan 24 2015 mailaender@opensuse.org
  - update to version 1.9.0
    - Issue #106: Support the `flush` parameter to `six.print_`.
    - Pull request #48 and issue #15: Add the `python_2_unicode_compatible`
      decorator.
    - Pull request #57 and issue #50: Add several compatibility methods for
      unittest assertions that were renamed between Python 2 and 3.
    - Issue #105 and pull request #58: Ensure `six.wraps` respects the
    * updated* and *assigned* arguments.
    - Issue #102: Add `raise_from` to abstract out Python 3's raise from
      syntax.
    - Issue #97: Optimize `six.iterbytes` on Python 2.
    - Issue #98: Fix `six.moves` race condition in multi-threaded code.
    - Pull request #51: Add `six.view(keys|values|itmes)`, which provide
      dictionary views on Python 2.7+.

Files

/usr/share/doc/packages/python-six-doc
/usr/share/doc/packages/python-six-doc/html
/usr/share/doc/packages/python-six-doc/html/_sources
/usr/share/doc/packages/python-six-doc/html/_sources/index.rst.txt
/usr/share/doc/packages/python-six-doc/html/_static
/usr/share/doc/packages/python-six-doc/html/_static/ajax-loader.gif
/usr/share/doc/packages/python-six-doc/html/_static/basic.css
/usr/share/doc/packages/python-six-doc/html/_static/classic.css
/usr/share/doc/packages/python-six-doc/html/_static/comment-bright.png
/usr/share/doc/packages/python-six-doc/html/_static/comment-close.png
/usr/share/doc/packages/python-six-doc/html/_static/comment.png
/usr/share/doc/packages/python-six-doc/html/_static/default.css
/usr/share/doc/packages/python-six-doc/html/_static/doctools.js
/usr/share/doc/packages/python-six-doc/html/_static/documentation_options.js
/usr/share/doc/packages/python-six-doc/html/_static/down-pressed.png
/usr/share/doc/packages/python-six-doc/html/_static/down.png
/usr/share/doc/packages/python-six-doc/html/_static/file.png
/usr/share/doc/packages/python-six-doc/html/_static/jquery-3.2.1.js
/usr/share/doc/packages/python-six-doc/html/_static/jquery.js
/usr/share/doc/packages/python-six-doc/html/_static/minus.png
/usr/share/doc/packages/python-six-doc/html/_static/plus.png
/usr/share/doc/packages/python-six-doc/html/_static/pygments.css
/usr/share/doc/packages/python-six-doc/html/_static/searchtools.js
/usr/share/doc/packages/python-six-doc/html/_static/sidebar.js
/usr/share/doc/packages/python-six-doc/html/_static/underscore-1.3.1.js
/usr/share/doc/packages/python-six-doc/html/_static/underscore.js
/usr/share/doc/packages/python-six-doc/html/_static/up-pressed.png
/usr/share/doc/packages/python-six-doc/html/_static/up.png
/usr/share/doc/packages/python-six-doc/html/_static/websupport.js
/usr/share/doc/packages/python-six-doc/html/genindex.html
/usr/share/doc/packages/python-six-doc/html/index.html
/usr/share/doc/packages/python-six-doc/html/objects.inv
/usr/share/doc/packages/python-six-doc/html/py-modindex.html
/usr/share/doc/packages/python-six-doc/html/search.html
/usr/share/doc/packages/python-six-doc/html/searchindex.js
/usr/share/licenses/python-six-doc
/usr/share/licenses/python-six-doc/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 14:28:18 2024