1
0

Compare commits

6 Commits

Author SHA256 Message Date
36f6871b31 Accepting request 1291582 from devel:languages:python
- Upgrade to 1.4.0:
  * Added decorator functionality to Signal as a convenient way to add a
    callback
  * Improved type safety by allowing callback parameters to be type checked
    (typing-extensions is now required for Python <3.13). Parameters for a
    Signal callback should now be defined like Signal[int, str]

OBS-URL: https://build.opensuse.org/request/show/1291582
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-aiosignal?expand=0&rev=6
2025-07-10 21:15:00 +00:00
deb05bcb5d - Upgrade to 1.4.0:
* Added decorator functionality to Signal as a convenient way to add a
    callback
  * Improved type safety by allowing callback parameters to be type checked
    (typing-extensions is now required for Python <3.13). Parameters for a
    Signal callback should now be defined like Signal[int, str]

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-aiosignal?expand=0&rev=12
2025-07-10 04:53:39 +00:00
04782dac5b Accepting request 1285326 from devel:languages:python
- Switch to pyproject macros.

OBS-URL: https://build.opensuse.org/request/show/1285326
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-aiosignal?expand=0&rev=5
2025-06-13 16:43:32 +00:00
80a8b6e767 - Switch to pyproject macros.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-aiosignal?expand=0&rev=10
2025-06-13 05:40:41 +00:00
73bbd7a0d9 Accepting request 1239257 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1239257
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-aiosignal?expand=0&rev=4
2025-01-22 15:30:55 +00:00
7b92a2f1ef - Update to 1.3.2
* Dropped Python 3.7 support. (#413)
  * Dropped Python 3.8 support. (#645)
  * Remove redundant wheel dep from pyproject.toml. (#362)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-aiosignal?expand=0&rev=8
2025-01-21 12:13:31 +00:00
4 changed files with 38 additions and 9 deletions

BIN
aiosignal-1.3.1.tar.gz (Stored with Git LFS)

Binary file not shown.

3
aiosignal-1.4.0.tar.gz Normal file
View File

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

View File

@@ -1,3 +1,26 @@
-------------------------------------------------------------------
Thu Jul 10 04:53:25 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
- Upgrade to 1.4.0:
* Added decorator functionality to Signal as a convenient way to add a
callback
* Improved type safety by allowing callback parameters to be type checked
(typing-extensions is now required for Python <3.13). Parameters for a
Signal callback should now be defined like Signal[int, str]
-------------------------------------------------------------------
Fri Jun 13 05:35:05 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
- Switch to pyproject macros.
-------------------------------------------------------------------
Tue Jan 21 10:06:18 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 1.3.2
* Dropped Python 3.7 support. (#413)
* Dropped Python 3.8 support. (#645)
* Remove redundant wheel dep from pyproject.toml. (#362)
-------------------------------------------------------------------
Fri May 5 10:16:37 UTC 2023 - Daniel Garcia <daniel.garcia@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-aiosignal
#
# Copyright (c) 2023 SUSE LLC
# Copyright (c) 2025 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -16,25 +16,31 @@
#
%define skip_python2 1
%{?sle15_python_module_pythons}
Name: python-aiosignal
Version: 1.3.1
Version: 1.4.0
Release: 0
Summary: a list of registered asynchronous callbacks
License: Apache-2.0
URL: https://github.com/aio-libs/aiosignal
Source: https://files.pythonhosted.org/packages/source/a/aiosignal/aiosignal-%{version}.tar.gz
BuildRequires: %{python_module base >= 3.9}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-frozenlist >= 1.1.0
%if 0%{?python_version_nodots} < 313
Requires: python-typing_extensions >= 4.4
%endif
BuildArch: noarch
# SECTION test requirements
BuildRequires: %{python_module frozenlist >= 1.1.0}
BuildRequires: %{python_module pytest-asyncio}
BuildRequires: %{python_module pytest-cov}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module typing_extensions >= 4.4}
# /SECTION
%python_subpackages
@@ -46,10 +52,10 @@ Signal is a list of registered asynchronous callbacks.
%setup -q -n aiosignal-%{version}
%build
%python_build
%pyproject_wheel
%install
%python_install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
@@ -59,6 +65,6 @@ Signal is a list of registered asynchronous callbacks.
%doc CHANGES.rst README.rst
%license LICENSE
%{python_sitelib}/aiosignal
%{python_sitelib}/aiosignal-%{version}*-info
%{python_sitelib}/aiosignal-%{version}.dist-info
%changelog