14
0

6 Commits

Author SHA256 Message Date
0e00171091 Accepting request 1320741 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1320741
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-websocket-client?expand=0&rev=28
2025-12-03 13:11:41 +00:00
637faaf398 - Adjust License tag on spec file after transition to Apache-2.0
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-websocket-client?expand=0&rev=65
2025-12-01 12:38:12 +00:00
908e0a72d3 Accepting request 1313859 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1313859
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-websocket-client?expand=0&rev=27
2025-10-28 13:45:22 +00:00
24cd815a37 - Update to 1.9.0
* Remove Python 3.8 support (EOL), add Python 3.13 (5f25030)
  * Remove localhost and 127.0.0.1 from default NO_PROXY list (#994)
  * Support IPv6 CIDRs in the no_proxy option (#1033)
  * Fix thread safety condition in `teardown()` to improve `run_forever()` (#1015)
  * Fix #1024 by chunking data, recursion in on_error callback, thread leak
    in `_stop_ping_thread()`, avoid implicit None in `recv()` (#1036)
  * Avoid bare except clauses for better error handling (#1036)
  * Fix async (#983)
  * Resolve mypy type errors (#996, #1006, 813d570)
  * Test coverage improvements (#1035, #1036)
  * flake8 linting improvements (#1034)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-websocket-client?expand=0&rev=63
2025-10-27 14:05:56 +00:00
e981740279 Accepting request 1208011 from devel:languages:python
- Update to 1.8.0:
  * Added `on_reconnect` parameter to WebSocketApp to handle callback
    ambiguity
  * Improve handling of SSLEOFError and use reconnect bool
- Switch to pyproject macros.

OBS-URL: https://build.opensuse.org/request/show/1208011
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-websocket-client?expand=0&rev=26
2024-10-16 21:35:46 +00:00
c8c9cd6f22 - Update to 1.8.0:
* Added `on_reconnect` parameter to WebSocketApp to handle callback
    ambiguity
  * Improve handling of SSLEOFError and use reconnect bool
- Switch to pyproject macros.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-websocket-client?expand=0&rev=61
2024-10-15 03:35:34 +00:00
4 changed files with 46 additions and 14 deletions

View File

@@ -1,3 +1,33 @@
-------------------------------------------------------------------
Tue Nov 18 11:38:25 UTC 2025 - Pablo Suárez Hernández <pablo.suarezhernandez@suse.com>
- Adjust License tag on spec file after transition to Apache-2.0
-------------------------------------------------------------------
Thu Oct 16 13:52:35 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 1.9.0
* Remove Python 3.8 support (EOL), add Python 3.13 (5f25030)
* Remove localhost and 127.0.0.1 from default NO_PROXY list (#994)
* Support IPv6 CIDRs in the no_proxy option (#1033)
* Fix thread safety condition in `teardown()` to improve `run_forever()` (#1015)
* Fix #1024 by chunking data, recursion in on_error callback, thread leak
in `_stop_ping_thread()`, avoid implicit None in `recv()` (#1036)
* Avoid bare except clauses for better error handling (#1036)
* Fix async (#983)
* Resolve mypy type errors (#996, #1006, 813d570)
* Test coverage improvements (#1035, #1036)
* flake8 linting improvements (#1034)
-------------------------------------------------------------------
Tue Oct 15 03:35:11 UTC 2024 - Steve Kowalik <steven.kowalik@suse.com>
- Update to 1.8.0:
* Added `on_reconnect` parameter to WebSocketApp to handle callback
ambiguity
* Improve handling of SSLEOFError and use reconnect bool
- Switch to pyproject macros.
-------------------------------------------------------------------
Wed Dec 13 10:36:07 UTC 2023 - Dirk Müller <dmueller@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-websocket-client
#
# Copyright (c) 2023 SUSE LLC
# Copyright (c) 2025 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -24,16 +24,18 @@
%{?sle15_python_module_pythons}
Name: python-websocket-client
Version: 1.7.0
Version: 1.9.0
Release: 0
Summary: WebSocket client implementation
License: LGPL-2.1-only
License: Apache-2.0
URL: https://github.com/liris/websocket-client/releases
Source0: https://files.pythonhosted.org/packages/source/w/websocket_client/websocket-client-%{version}.tar.gz
BuildRequires: %{python_module Sphinx >= 3.4}
Source0: https://files.pythonhosted.org/packages/source/w/websocket_client/websocket_client-%{version}.tar.gz
BuildRequires: %{python_module Sphinx >= 6.0}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module sphinx_rtd_theme >= 0.5}
BuildRequires: %{python_module sphinx_rtd_theme >= 1.1}
BuildRequires: %{python_module websockets}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
%if %{with libalternatives}
@@ -41,7 +43,7 @@ Requires: alts
BuildRequires: alts
%else
Requires(post): update-alternatives
Requires(postun):update-alternatives
Requires(postun): update-alternatives
%endif
Provides: python-websocket-client-test = %{version}
Obsoletes: python-websocket-client-test < %{version}
@@ -55,13 +57,13 @@ low-level APIs for WebSocket. All APIs are synchronous functions.
Websocket-client supports only hybi-13.
%prep
%setup -q -n websocket-client-%{version}
%setup -q -n websocket_client-%{version}
%build
%python_build
%pyproject_wheel
%install
%python_install
%pyproject_install
%python_expand %fdupes %{buildroot}/%{$python_sitelib}
%python_clone -a %{buildroot}%{_bindir}/wsdump
@@ -83,6 +85,6 @@ Websocket-client supports only hybi-13.
%doc README.md ChangeLog
%python_alternative %{_bindir}/wsdump
%{python_sitelib}/websocket/
%{python_sitelib}/websocket_client-%{version}-py*.egg-info
%{python_sitelib}/websocket_client-%{version}.dist-info
%changelog

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:10e511ea3a8c744631d3bd77e61eb17ed09304c413ad42cf6ddfa4c7787e8fe6
size 54037

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9e813624b6eb619999a97dc7958469217c3176312b3a16a4bd1bc7e08a46ec98
size 70576