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

python312-yarl-1.9.4-3.2 RPM for armv6hl

From OpenSuSE Ports Tumbleweed for armv6hl

Name: python312-yarl Distribution: openSUSE Tumbleweed
Version: 1.9.4 Vendor: openSUSE
Release: 3.2 Build date: Tue Mar 12 11:35:11 2024
Group: Unspecified Build host: reproducible
Size: 424438 Source RPM: python-yarl-1.9.4-3.2.src.rpm
Packager: http://bugs.opensuse.org
Url: https://github.com/aio-libs/yarl/
Summary: Yet another URL library
The module provides a URL class for url parsing and changing.

Provides

Requires

License

Apache-2.0

Changelog

* Tue Mar 12 2024 Bernhard Wiedemann <bwiedemann@suse.com>
  - restore correct reproducible.patch
* Tue Jan 16 2024 Dirk Müller <dmueller@suse.com>
  - restore reproducible.patch to not add a random tmp path
    (boo#1062303)
* Sun Jan 14 2024 Dirk Müller <dmueller@suse.com>
  - update to 1.9.4:
    * Started raising :py:exc:`TypeError` when a string value is
      passed into :py:meth:`~yarl.URL.build` as the port argument
    - - by :user:`commonism`. Previously the empty string as port
      would create malformed URLs when rendered as string
      representations.
    * Started raising :py:exc:`TypeError` when a string value is
      passed into :py:meth:`~yarl.URL.build` as the port argument
    * Previously the empty string as port would create malformed
      URLs when rendered as string representations. (:issue:`883`)
    * The leading -- has been dropped from the PEP 517 in-tree
      build backend config setting names. --pure-python is now just
      pure-python -- by :user:`webknjaz`. The usage now looks as
      follows:  $ python -m build \     --config-setting=pure-
      python=true \     --config-setting=with-cython-tracing=true
      (:issue:`963`)
    * The leading -- has been dropped from the PEP 517 in-tree
      build backend config setting names. --pure-python is now just
      pure-python -- by :user:`webknjaz`.
    * It is now possible to request line tracing in Cython builds
      using the with-cython-tracing PEP 517 config setting --
      :user:`webknjaz`. This can be used in CI and development
      environment to measure coverage on Cython modules, but is not
      normally useful to the end-users or downstream packagers.
      Here's a usage example:  $ python -Im pip install . --config-
      settings=with-cython-tracing=true  For editable installs,
      this setting is on by default. Otherwise, it's off unless
      requested explicitly. (:issue:`962`)
  - drop reproducible.patch (upstream)
* Tue Dec 12 2023 Bernhard Wiedemann <bwiedemann@suse.de>
  - Add reproducible.patch to not add a random tmp path
    into the package (boo#1062303)
* Mon Nov 27 2023 Dirk Müller <dmueller@suse.com>
  - update to 1.9.3:
    * Stopped dropping trailing slashes in
      :py:meth:`~yarl.URL.joinpath`
    * Started accepting string subclasses in ``__truediv__()``
      operations (``URL / segment``)
    * Fixed the human representation of URLs with square brackets
      in usernames and passwords
    * Updated type hints to include ``URL.missing_port()``,
      ``URL.__bytes__()`` and the ``encoding`` argument to
      :py:meth:`~yarl.URL.joinpath`
    * Integrated Cython 3 to enable building *yarl* under Python
      3.12
    * Declared modern ``setuptools.build_meta`` as the :pep:`517`
      build backend in :file:`pyproject.toml` explicitly
    * Converted most of the packaging setup into a declarative
      :file:`setup.cfg`
    * Declared Python 3.12 supported officially in the distribution
      package metadata
    * A regression test for no-host URLs was added per :issue:`821`
    * and :rfc:`3986`
    * MyST is now integrated in Sphinx
  - drop 882-sq_bracket_in_URL_netloc.patch (upstream)
* Tue Jul 04 2023 Matej Cepl <mcepl@suse.com>
  - Add 882-sq_bracket_in_URL_netloc.patch fixing handling of
    square bracket handling in URL netloc (gh#aio-libs/yarl#876).
* Wed Apr 26 2023 Daniel Garcia <daniel.garcia@suse.com>
  - Update to version 1.9.2
    Fix regression with truediv and absolute URLs with empty paths
    causing the raw path to lack the leading /. ((#854)_)
* Mon Apr 24 2023 Adrian Schröter <adrian@suse.de>
  - update to version 1.9.1
    * Marked tests that fail on older Python patch releases
    (< 3.7.10, < 3.8.8 and < 3.9.2) as expected to fail due to missing
      a security fix for CVE-2021-23336. ((#850)_)
  - Delete support-python-311.patch, not needed anymore
* Fri Apr 21 2023 Dirk Müller <dmueller@suse.com>
  - add sle15_python_module_pythons (jsc#PED-68)
* Thu Apr 13 2023 Matej Cepl <mcepl@suse.com>
  - Make calling of %{sle15modernpython} optional.
* Thu Mar 02 2023 Matej Cepl <mcepl@suse.com>
  - Refreshed support-python-311.patch: with fix
    of CVE-2023-24329 (bsc#1208471), the test
    test_url_parsing.TestScheme.test_not_a_scheme2 fails on all
    openSUSE/SLE Python interpreters.
* Mon Jan 09 2023 Steve Kowalik <steven.kowalik@suse.com>
  - Add patch support-python-311.patch:
    * Skip a test under Python 3.11.
* Wed Dec 07 2022 Yogalakshmi Arunachalam <yarunachalam@suse.com>
  - Update to version 1.8.2
    * This is the first release that started shipping wheels for Python 3.11.
* Thu Aug 18 2022 Ben Greiner <code@bnavigator.de>
  - Update to 1.8.1
    * Added URL.raw_suffix, URL.suffix, URL.raw_suffixes,
      URL.suffixes, URL.with_suffix. (#613)
    * Dropped Python 3.6 support. (#672)
  - Drop tests_overcome_bpo42967.patch
* Tue Dec 07 2021 pgajdos@suse.com
  - version update to 1.7.2
    - Changed call in ``with_port()`` to stop reencoding parts of the URL
    that were already encoded. (`#623 <https://github.com/aio-libs/yarl/issues/623>`_)
    - Add `__bytes__()` magic method so that `bytes(url)` will work and use optimal
    ASCII encoding. (`#582 <https://github.com/aio-libs/yarl/issues/582>`_)
    - Started shipping platform-specific arm64 wheels for Apple Silicon.
    (`#622 <https://github.com/aio-libs/yarl/issues/622>`_)
    - Started shipping platform-specific wheels with the ``musl`` tag targeting typical
    Alpine Linux runtimes. (`#622 <https://github.com/aio-libs/yarl/issues/622>`_)
    - Added support for Python 3.10. (`#622 <https://github.com/aio-libs/yarl/issues/622>`_)
  - do not require pytest-runner for build, it is not needed
* Sat Mar 20 2021 Ben Greiner <code@bnavigator.de>
  - Unset -Werror=return-type for python39
  - Only install typing_extensions for Python < 3.8
* Tue Feb 23 2021 Matej Cepl <mcepl@suse.com>
  - Add tests_overcome_bpo42967.patch to over effects of bpo#42967,
    which forbade mixing amps and semicolons in query strings as
    separators.

Files

/usr/lib/python3.12/site-packages/yarl
/usr/lib/python3.12/site-packages/yarl-1.9.4.dist-info
/usr/lib/python3.12/site-packages/yarl-1.9.4.dist-info/INSTALLER
/usr/lib/python3.12/site-packages/yarl-1.9.4.dist-info/LICENSE
/usr/lib/python3.12/site-packages/yarl-1.9.4.dist-info/METADATA
/usr/lib/python3.12/site-packages/yarl-1.9.4.dist-info/NOTICE
/usr/lib/python3.12/site-packages/yarl-1.9.4.dist-info/RECORD
/usr/lib/python3.12/site-packages/yarl-1.9.4.dist-info/REQUESTED
/usr/lib/python3.12/site-packages/yarl-1.9.4.dist-info/WHEEL
/usr/lib/python3.12/site-packages/yarl-1.9.4.dist-info/top_level.txt
/usr/lib/python3.12/site-packages/yarl/__init__.py
/usr/lib/python3.12/site-packages/yarl/__init__.pyi
/usr/lib/python3.12/site-packages/yarl/__pycache__
/usr/lib/python3.12/site-packages/yarl/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/yarl/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/yarl/__pycache__/_quoting.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/yarl/__pycache__/_quoting.cpython-312.pyc
/usr/lib/python3.12/site-packages/yarl/__pycache__/_quoting_py.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/yarl/__pycache__/_quoting_py.cpython-312.pyc
/usr/lib/python3.12/site-packages/yarl/__pycache__/_url.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/yarl/__pycache__/_url.cpython-312.pyc
/usr/lib/python3.12/site-packages/yarl/_quoting.py
/usr/lib/python3.12/site-packages/yarl/_quoting_c.cpython-310-arm-linux-gnueabihf.so
/usr/lib/python3.12/site-packages/yarl/_quoting_c.cpython-312-arm-linux-gnueabihf.so
/usr/lib/python3.12/site-packages/yarl/_quoting_c.pyi
/usr/lib/python3.12/site-packages/yarl/_quoting_c.pyx
/usr/lib/python3.12/site-packages/yarl/_quoting_py.py
/usr/lib/python3.12/site-packages/yarl/_url.py
/usr/lib/python3.12/site-packages/yarl/py.typed
/usr/share/doc/packages/python312-yarl
/usr/share/doc/packages/python312-yarl/CHANGES.rst
/usr/share/doc/packages/python312-yarl/README.rst
/usr/share/licenses/python312-yarl
/usr/share/licenses/python312-yarl/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Sat Apr 27 00:31:59 2024