Commit Graph

66 Commits

Author SHA256 Message Date
Ana Guerrero
db7f96ff94 Accepting request 1157158 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1157158
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-yarl?expand=0&rev=30
2024-03-13 21:16:45 +00:00
15e5c1a90d Accepting request 1157151 from home:bmwiedemann:branches:devel:languages:python
restore correct reproducible.patch

OBS-URL: https://build.opensuse.org/request/show/1157151
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-yarl?expand=0&rev=64
2024-03-12 11:01:01 +00:00
Ana Guerrero
919aad2a44 Accepting request 1139325 from devel:languages:python
- restore reproducible.patch to not add a random tmp path
  (boo#1062303)

OBS-URL: https://build.opensuse.org/request/show/1139325
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-yarl?expand=0&rev=29
2024-01-17 21:14:54 +00:00
f8fe4b0773 - restore reproducible.patch to not add a random tmp path
(boo#1062303)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-yarl?expand=0&rev=62
2024-01-16 22:11:46 +00:00
Ana Guerrero
c6e84c9e81 Accepting request 1138583 from devel:languages:python
- 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)

OBS-URL: https://build.opensuse.org/request/show/1138583
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-yarl?expand=0&rev=28
2024-01-15 21:11:17 +00:00
24beda1d74 - 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)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-yarl?expand=0&rev=60
2024-01-14 15:10:17 +00:00
Ana Guerrero
6285fae21f Accepting request 1132690 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1132690
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-yarl?expand=0&rev=27
2023-12-13 17:34:10 +00:00
Markéta Machová
364bf4ff1f Accepting request 1132599 from home:bmwiedemann:branches:devel:languages:python
Add reproducible.patch to not add a random tmp path into the package (boo#1062303)

Feel free to replace this with a better/upstreamable change.

OBS-URL: https://build.opensuse.org/request/show/1132599
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-yarl?expand=0&rev=58
2023-12-12 13:54:26 +00:00
Ana Guerrero
11d57eeef3 Accepting request 1129244 from devel:languages:python
- 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)

  * 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/request/show/1129244
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-yarl?expand=0&rev=26
2023-11-28 21:17:31 +00:00
8da29269b9 `URL.__bytes__() and the encoding` argument to
* and :rfc:`3986`
  * MyST is now integrated in Sphinx
- drop 882-sq_bracket_in_URL_netloc.patch (upstream)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-yarl?expand=0&rev=56
2023-11-27 20:23:54 +00:00
3652d54a52 - 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
2023-11-27 20:22:56 +00:00
Fabian Vogt
3e1a28cd35 Accepting request 1096862 from devel:languages:python
- Add 882-sq_bracket_in_URL_netloc.patch fixing handling of
  square bracket handling in URL netloc (gh#aio-libs/yarl#876).

OBS-URL: https://build.opensuse.org/request/show/1096862
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-yarl?expand=0&rev=25
2023-07-06 16:27:46 +00:00
65b735a82a Clean up the SPEC file
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-yarl?expand=0&rev=53
2023-07-04 22:17:41 +00:00
764a686a85 - Add 882-sq_bracket_in_URL_netloc.patch fixing handling of
square bracket handling in URL netloc (gh#aio-libs/yarl#876).

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-yarl?expand=0&rev=52
2023-07-04 21:48:35 +00:00
Dominique Leuenberger
4972eb7aab Accepting request 1082898 from devel:languages:python
- 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)_)
- 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

OBS-URL: https://build.opensuse.org/request/show/1082898
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-yarl?expand=0&rev=24
2023-04-27 17:59:04 +00:00
bd2683a29f - 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)_)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-yarl?expand=0&rev=50
2023-04-26 07:35:30 +00:00
967e0364fb - Delete support-python-311.patch, not needed anymore
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-yarl?expand=0&rev=49
2023-04-25 11:42:05 +00:00
d57000bafb Accepting request 1082498 from system:homeautomation:home-assistant:unstable
- 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)_)

OBS-URL: https://build.opensuse.org/request/show/1082498
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-yarl?expand=0&rev=48
2023-04-25 11:40:43 +00:00
Dominique Leuenberger
4fbcd8232d Accepting request 1081718 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1081718
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-yarl?expand=0&rev=23
2023-04-22 19:58:03 +00:00
e2b2c90226 Accepting request 1081703 from home:dirkmueller:acdc:as_python3_module
SR for python stack proposal

OBS-URL: https://build.opensuse.org/request/show/1081703
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-yarl?expand=0&rev=46
2023-04-21 13:27:35 +00:00
Dominique Leuenberger
eb883b4fa1 Accepting request 1068657 from devel:languages:python
- 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.

OBS-URL: https://build.opensuse.org/request/show/1068657
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-yarl?expand=0&rev=22
2023-03-03 21:24:18 +00:00
3310d0f37d - 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.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-yarl?expand=0&rev=44
2023-03-02 10:47:31 +00:00
Dominique Leuenberger
13cc52efff Accepting request 1056959 from devel:languages:python
- Add patch support-python-311.patch:
  * Skip a test under Python 3.11.

OBS-URL: https://build.opensuse.org/request/show/1056959
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-yarl?expand=0&rev=21
2023-01-10 13:58:57 +00:00
Steve Kowalik
660d2d72dd - Add patch support-python-311.patch:
* Skip a test under Python 3.11.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-yarl?expand=0&rev=42
2023-01-09 04:18:40 +00:00
Dominique Leuenberger
6d4610f711 Accepting request 1041630 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1041630
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-yarl?expand=0&rev=20
2022-12-09 12:16:42 +00:00
69aee45d5b Accepting request 1041280 from home:yarunachalam:branches:devel:languages:python
- Update to version 1.8.2 
  * This is the first release that started shipping wheels for Python 3.11.

OBS-URL: https://build.opensuse.org/request/show/1041280
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-yarl?expand=0&rev=40
2022-12-08 13:05:09 +00:00
Dominique Leuenberger
0749908c90 Accepting request 998077 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/998077
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-yarl?expand=0&rev=19
2022-08-20 18:27:34 +00:00
b70e7fd4cd Accepting request 998040 from home:bnavigator:branches:devel:languages:python
- 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

OBS-URL: https://build.opensuse.org/request/show/998040
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-yarl?expand=0&rev=38
2022-08-19 06:42:36 +00:00
Dominique Leuenberger
607db002d4 Accepting request 936387 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/936387
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-yarl?expand=0&rev=18
2021-12-09 18:45:21 +00:00
adc9a178c2 Accepting request 936291 from home:pgajdos:python
- 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

OBS-URL: https://build.opensuse.org/request/show/936291
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-yarl?expand=0&rev=37
2021-12-08 00:51:38 +00:00
Dominique Leuenberger
3b566ead84 Accepting request 880489 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/880489
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-yarl?expand=0&rev=17
2021-03-24 15:10:25 +00:00
71585e543e Accepting request 880298 from home:bnavigator:branches:devel:languages:python
- Unset -Werror=return-type for python39
- Only install typing_extensions for Python < 3.8

OBS-URL: https://build.opensuse.org/request/show/880298
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-yarl?expand=0&rev=35
2021-03-22 10:24:59 +00:00
Richard Brown
d3217e2a64 Accepting request 874658 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/874658
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-yarl?expand=0&rev=16
2021-03-02 13:43:01 +00:00
0472afe729 Accepting request 874657 from home:mcepl:branches:python36
- Add tests_overcome_bpo42967.patch to over effects of bpo#42967,
  which forbade mixing amps and semicolons in query strings as
  separators.

OBS-URL: https://build.opensuse.org/request/show/874657
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-yarl?expand=0&rev=33
2021-02-23 17:12:08 +00:00
Dominique Leuenberger
b8ac66d5db Accepting request 856968 from devel:languages:python
- update to 1.6.3:
  - No longer loose characters when decoding incorrect percent-sequences (like
    ``%e2%82%f8``). All non-decodable percent-sequences are now preserved.
  - Provide generated ``.c`` files in TarBall distribution.
  - ``human_repr()`` now always produces valid representation equivalent to the
    original URL (if the original URL is valid).
  - Fixed  requoting a single percent followed by a percent-encoded character
    in the Cython implementation.
  - Fix ValueError when decoding ``%`` which is not followed by two hexadecimal
    digits.
  - Fix decoding ``%`` followed by a space and hexadecimal digit.
  - Fix annotation of ``with_query()``/``update_query()`` methods for
    ``key=[val1, val2]`` case.

OBS-URL: https://build.opensuse.org/request/show/856968
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-yarl?expand=0&rev=15
2020-12-23 13:18:48 +00:00
de9a305ff4 - update to 1.6.3:
- No longer loose characters when decoding incorrect percent-sequences (like
    ``%e2%82%f8``). All non-decodable percent-sequences are now preserved.
  - Provide generated ``.c`` files in TarBall distribution.
  - ``human_repr()`` now always produces valid representation equivalent to the
    original URL (if the original URL is valid).
  - Fixed  requoting a single percent followed by a percent-encoded character
    in the Cython implementation.
  - Fix ValueError when decoding ``%`` which is not followed by two hexadecimal
    digits.
  - Fix decoding ``%`` followed by a space and hexadecimal digit.
  - Fix annotation of ``with_query()``/``update_query()`` methods for
    ``key=[val1, val2]`` case.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-yarl?expand=0&rev=31
2020-12-19 10:08:24 +00:00
Dominique Leuenberger
0931162fc5 Accepting request 838272 from devel:languages:python
- update to 1.6.0:
  - Allow for int and float subclasses in query, while still denying bool.
    `#492 <https://github.com/aio-libs/yarl/issues/492>`_
  - Do not requote arguments in ``URL.build()``, ``with_xxx()`` and in ``/`` operator.
    `#502 <https://github.com/aio-libs/yarl/issues/502>`_
  - Keep IPv6 brackets in ``origin()``.
    `#504 <https://github.com/aio-libs/yarl/issues/504>`_

OBS-URL: https://build.opensuse.org/request/show/838272
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-yarl?expand=0&rev=14
2020-10-29 08:46:15 +00:00
d5b279eb3b - update to 1.6.0:
- Allow for int and float subclasses in query, while still denying bool.
    `#492 <https://github.com/aio-libs/yarl/issues/492>`_
  - Do not requote arguments in ``URL.build()``, ``with_xxx()`` and in ``/`` operator.
    `#502 <https://github.com/aio-libs/yarl/issues/502>`_
  - Keep IPv6 brackets in ``origin()``.
    `#504 <https://github.com/aio-libs/yarl/issues/504>`_

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-yarl?expand=0&rev=29
2020-09-28 12:06:20 +00:00
Dominique Leuenberger
565c200765 Accepting request 823367 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/823367
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-yarl?expand=0&rev=13
2020-07-31 14:01:37 +00:00
0bcb020930 Accepting request 823277 from home:bnavigator:branches:devel:languages:python
- remove c source file from package (rpmlint error)
- needs typing-extensions

OBS-URL: https://build.opensuse.org/request/show/823277
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-yarl?expand=0&rev=27
2020-07-29 10:41:46 +00:00
c733a89df7 - update to 1.5.0
- fix tests
 * Convert host to lowercase on URL building. #386
 * Allow using mod operator (%) for updating query string (an alias for update_query() method)
 * Allow use of sequences such as list and tuple in the values of a mapping
   such as dict to represent that a key has many values:
     url = URL("http://example.com")
     assert url.with_query({"a": [1, 2]}) == URL("http://example.com/?a=1&a=2")
 * Support URL.build() with scheme and path (creates a relative URL)
 * Cache slow IDNA encode/decode calls
 * Add @final / Final type hints
 * Support URL authority/raw_authority properties and authority argument
   of URL.build() method
 * Hide the library implementation details, make the exposed public list very clean
 * Fix tests with newer Python (3.7.6, 3.8.1 and 3.9.0+)
 * Fix a bug where query component, passed in a form of mapping or sequence,
   is unquoted in unexpected way
 * Hide Query and QueryVariable type aliases in __init__.pyi, now they
   are prefixed with underscore.
 * Keep ipv6 brackets after updating port/user/password.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-yarl?expand=0&rev=26
2020-07-28 19:17:40 +00:00
Dominique Leuenberger
d0b1d4ac79 Accepting request 769628 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/769628
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-yarl?expand=0&rev=12
2020-02-04 18:53:32 +00:00
Tomáš Chvátal
e6bed33696 Accepting request 769623 from home:mcalabkova:branches:devel:languages:python
- update to 1.4.2
  * Workaround for missing str.isascii() in Python 3.6
  * Distinguish an empty password in URL from a password not provided at all
  * Fixed annotations for optional parameters of URL.build
  * Use None as default value of user parameter of URL.build
  * Enforce building C Accelerated modules when installing from source tarball, 
    use YARL_NO_EXTENSIONS environment variable for falling back to (slower) 
    Pure Python implementation
  * Fix quoting of plus in path by pure python version
  * Don't create a new URL if fragment is unchanged
  * Included in error msg the path that produces starting slash forbidden error
  * Skip slow IDNA encoding for ASCII-only strings

OBS-URL: https://build.opensuse.org/request/show/769623
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-yarl?expand=0&rev=24
2020-02-03 14:51:15 +00:00
Dominique Leuenberger
354617dcee Accepting request 681093 from devel:languages:python
- update to 1.3.0
 * Fix annotations for query parameter
 * An incoming query sequence can have int variables
 * Add URL.explicit_port property
 * Give a friendlier error when port cant be converted to int
 * bool(URL()) now returns False
 * Fix annotations for build
 * Fix annotations for cached_property
 * Accept str subclasses in URL constructor
 * Forbid inheritance, replace __init__ with __new__
 * Support PEP-561 (provide type hinting marker)

OBS-URL: https://build.opensuse.org/request/show/681093
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-yarl?expand=0&rev=11
2019-03-04 08:24:01 +00:00
a94bbd7019 - update to 1.3.0
* Fix annotations for query parameter
 * An incoming query sequence can have int variables
 * Add URL.explicit_port property
 * Give a friendlier error when port cant be converted to int
 * bool(URL()) now returns False
 * Fix annotations for build
 * Fix annotations for cached_property
 * Accept str subclasses in URL constructor
 * Forbid inheritance, replace __init__ with __new__
 * Support PEP-561 (provide type hinting marker)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-yarl?expand=0&rev=22
2019-03-03 13:54:08 +00:00
Dominique Leuenberger
b29ffe0957 Accepting request 632112 from devel:languages:python
- Raise multidict requirement to match up setup.py

OBS-URL: https://build.opensuse.org/request/show/632112
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-yarl?expand=0&rev=10
2018-08-31 08:45:08 +00:00
Tomáš Chvátal
73e7fa10de - Raise multidict requirement to match up setup.py
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-yarl?expand=0&rev=20
2018-08-29 09:18:24 +00:00
Dominique Leuenberger
f8a08ff059 Accepting request 579945 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/579945
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-yarl?expand=0&rev=9
2018-02-26 22:25:15 +00:00
Tomáš Chvátal
dc23784a49 Accepting request 579824 from home:apersaud:branches:devel:languages:python
update to latest version

OBS-URL: https://build.opensuse.org/request/show/579824
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-yarl?expand=0&rev=18
2018-02-25 14:45:08 +00:00
Dominique Leuenberger
0fb6ff3258 Accepting request 575874 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/575874
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-yarl?expand=0&rev=8
2018-02-14 08:46:16 +00:00