- 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 * Contributor-facing changes * A regression test for no-host URLs was added per :issue:`821` * and :rfc:`3986` -- by :user:`kenballus`. (:issue:`821`, :issue:`822`) * MyST is now integrated in Sphinx -- by :user:`webknjaz`. * Marked tests that fail on older Python patch releases * Skip a test under Python 3.11. - Update to version 1.8.2 - needs typing-extensions * Enforce building C Accelerated modules when installing from source tarball, use YARL_NO_EXTENSIONS environment variable for falling back to (slower) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-yarl?expand=0&rev=55
This commit is contained in:
parent
65b735a82a
commit
3652d54a52
@ -1,3 +1,31 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Nov 27 20:14:14 UTC 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
|
||||||
|
* Contributor-facing changes
|
||||||
|
* A regression test for no-host URLs was added per :issue:`821`
|
||||||
|
* and :rfc:`3986` -- by :user:`kenballus`. (:issue:`821`,
|
||||||
|
:issue:`822`)
|
||||||
|
* MyST is now integrated in Sphinx -- by :user:`webknjaz`.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jul 4 21:47:32 UTC 2023 - Matej Cepl <mcepl@suse.com>
|
Tue Jul 4 21:47:32 UTC 2023 - Matej Cepl <mcepl@suse.com>
|
||||||
|
|
||||||
|
@ -18,17 +18,15 @@
|
|||||||
|
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-yarl
|
Name: python-yarl
|
||||||
Version: 1.9.2
|
Version: 1.9.3
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Yet another URL library
|
Summary: Yet another URL library
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
URL: https://github.com/aio-libs/yarl/
|
URL: https://github.com/aio-libs/yarl/
|
||||||
Source: https://files.pythonhosted.org/packages/source/y/yarl/yarl-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/y/yarl/yarl-%{version}.tar.gz
|
||||||
# PATCH-FIX-UPSTREAM 882-sq_bracket_in_URL_netloc.patch gh#aio-libs/yarl#876 mcepl@suse.com
|
|
||||||
# Correct square bracket handling in URL netloc
|
|
||||||
Patch0: 882-sq_bracket_in_URL_netloc.patch
|
|
||||||
BuildRequires: %{python_module Cython}
|
BuildRequires: %{python_module Cython}
|
||||||
BuildRequires: %{python_module devel >= 3.7}
|
BuildRequires: %{python_module devel >= 3.7}
|
||||||
|
BuildRequires: %{python_module expandvars}
|
||||||
BuildRequires: %{python_module idna >= 2.0}
|
BuildRequires: %{python_module idna >= 2.0}
|
||||||
# test requirements
|
# test requirements
|
||||||
BuildRequires: %{python_module multidict >= 4.0}
|
BuildRequires: %{python_module multidict >= 4.0}
|
||||||
|
BIN
yarl-1.9.2.tar.gz
(Stored with Git LFS)
BIN
yarl-1.9.2.tar.gz
(Stored with Git LFS)
Binary file not shown.
3
yarl-1.9.3.tar.gz
Normal file
3
yarl-1.9.3.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:4a14907b597ec55740f63e52d7fee0e9ee09d5b9d57a4f399a7423268e457b57
|
||||||
|
size 135606
|
Loading…
Reference in New Issue
Block a user