Accepting request 1135268 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1135268 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-aiohttp?expand=0&rev=41
This commit is contained in:
commit
c0feea2c8b
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:09f23292d29135025e19e8ff4f0a68df078fe4ee013bca0105b2e803989de92d
|
|
||||||
size 7475063
|
|
3
aiohttp-3.9.1.tar.gz
Normal file
3
aiohttp-3.9.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:8fc49a87ac269d4529da45871e2ffb6874e87779c3d0e2ccd813c0899221239d
|
||||||
|
size 7482118
|
@ -1,3 +1,22 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Dec 22 13:46:25 UTC 2023 - Ben Greiner <code@bnavigator.de>
|
||||||
|
|
||||||
|
- Fix pytest call
|
||||||
|
- Update requirements
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Nov 27 15:22:11 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 3.9.1:
|
||||||
|
* Fixed importing aiohttp under PyPy on Windows.
|
||||||
|
* Fixed async concurrency safety in websocket compressor.
|
||||||
|
* Fixed ``ClientResponse.close()`` releasing the connection
|
||||||
|
instead of closing.
|
||||||
|
* Fixed a regression where connection may get closed during
|
||||||
|
upgrade. -- by :user:`Dreamsorcerer`
|
||||||
|
* Fixed messages being reported as upgraded without an Upgrade
|
||||||
|
header in Python parser. -- by :user:`Dreamsorcerer`
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Nov 25 22:51:20 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
Sat Nov 25 22:51:20 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
%bcond_with docs
|
%bcond_with docs
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-aiohttp
|
Name: python-aiohttp
|
||||||
Version: 3.9.0
|
Version: 3.9.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Asynchronous HTTP client/server framework
|
Summary: Asynchronous HTTP client/server framework
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
@ -31,9 +31,9 @@ Patch1: remove-re-assert.patch
|
|||||||
Requires: python-aiosignal >= 1.1.2
|
Requires: python-aiosignal >= 1.1.2
|
||||||
Requires: python-attrs >= 17.3.0
|
Requires: python-attrs >= 17.3.0
|
||||||
Requires: python-frozenlist >= 1.1.1
|
Requires: python-frozenlist >= 1.1.1
|
||||||
# %if %python_version_nodots < 311
|
%if 0%{?python_version_nodots} < 311
|
||||||
Requires: (python-async_timeout >= 4.0 with python-async_timeout < 5)
|
Requires: (python-async_timeout >= 4.0 with python-async_timeout < 5)
|
||||||
# %endif
|
%endif
|
||||||
Requires: (python-charset-normalizer >= 2.0 with python-charset-normalizer < 4)
|
Requires: (python-charset-normalizer >= 2.0 with python-charset-normalizer < 4)
|
||||||
Requires: (python-multidict >= 4.5 with python-multidict < 7)
|
Requires: (python-multidict >= 4.5 with python-multidict < 7)
|
||||||
Requires: (python-yarl >= 1.0 with python-yarl < 2)
|
Requires: (python-yarl >= 1.0 with python-yarl < 2)
|
||||||
@ -130,11 +130,14 @@ donttest+=" or test_client_session_timeout_zero or test_requote_redirect_url_def
|
|||||||
# flaky
|
# flaky
|
||||||
donttest+=" or test_https_proxy_unsupported_tls_in_tls"
|
donttest+=" or test_https_proxy_unsupported_tls_in_tls"
|
||||||
# not running under pytest ?!
|
# not running under pytest ?!
|
||||||
donttest+=" or test_circular_imports"
|
donttest+=" or test_circular_imports or test_import_time"
|
||||||
# requires python-on-whales
|
# requires python-on-whales
|
||||||
rm -v tests/autobahn/test_autobahn.py
|
rm -v tests/autobahn/test_autobahn.py
|
||||||
|
# randomly fails on xdist splits
|
||||||
|
single_runs="test_run_app"
|
||||||
test -d aiohttp && mv aiohttp aiohttp.bkp
|
test -d aiohttp && mv aiohttp aiohttp.bkp
|
||||||
%pytest_arch %{?jobs: -n %jobs} tests -k "not ($donttest ${$python_donttest})"
|
%pytest_arch %{?jobs: -n %jobs} tests -k "not ($donttest or ${single_runs})"
|
||||||
|
%pytest_arch tests -k "${single_runs}"
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%license LICENSE.txt
|
%license LICENSE.txt
|
||||||
|
Loading…
x
Reference in New Issue
Block a user