14
0

3 Commits

Author SHA256 Message Date
2f68268a5b Accepting request 1206440 from devel:languages:python
- update to 4.2.1:
  * Remove `SIGUSR2` from `TERMSIGS_DEAULT`
  * Add on_ready_counter to Worker.__reduce__.
  * Adapt for logging lock internal changes in Python3.13
  * blacksmith.sh: Migrate workflows to blacksmith
  * Prepare for release: v4.2.1

  * fix #314
  - Pass arguments when wrapping sys.exit (#275)
  - Remove win32/py2k special (#276)
  - Fix compatibility with Python 2.7 on Windows (#283)

OBS-URL: https://build.opensuse.org/request/show/1206440
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-billiard?expand=0&rev=25
2024-10-09 20:12:59 +00:00
0253a3b0a2 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-billiard?expand=0&rev=59 2024-10-09 06:35:50 +00:00
aaf1bc4d9f - update to 4.2.1:
* Remove `SIGUSR2` from `TERMSIGS_DEAULT`
  * Add on_ready_counter to Worker.__reduce__.
  * Adapt for logging lock internal changes in Python3.13
  * blacksmith.sh: Migrate workflows to blacksmith
  * Prepare for release: v4.2.1
  * fix #314
  - Pass arguments when wrapping sys.exit (#275)
  - Remove win32/py2k special (#276)
  - Fix compatibility with Python 2.7 on Windows (#283)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-billiard?expand=0&rev=58
2024-10-09 06:35:46 +00:00
2 changed files with 4 additions and 13 deletions

View File

@@ -1,9 +1,3 @@
-------------------------------------------------------------------
Fri Jun 6 05:32:11 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
- Switch to pyproject macros.
- No more greedy globs in %files.
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Oct 9 06:34:27 UTC 2024 - Dirk Müller <dmueller@suse.com> Wed Oct 9 06:34:27 UTC 2024 - Dirk Müller <dmueller@suse.com>

View File

@@ -1,7 +1,7 @@
# #
# spec file for package python-billiard # spec file for package python-billiard
# #
# Copyright (c) 2025 SUSE LLC # Copyright (c) 2024 SUSE LLC
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@@ -25,11 +25,9 @@ License: BSD-3-Clause
Group: Development/Languages/Python Group: Development/Languages/Python
URL: https://github.com/celery/billiard URL: https://github.com/celery/billiard
Source: https://files.pythonhosted.org/packages/source/b/billiard/billiard-%{version}.tar.gz Source: https://files.pythonhosted.org/packages/source/b/billiard/billiard-%{version}.tar.gz
BuildRequires: %{python_module pip}
BuildRequires: %{python_module psutil >= 5.9.0} BuildRequires: %{python_module psutil >= 5.9.0}
BuildRequires: %{python_module pytest} BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools} BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes BuildRequires: fdupes
BuildRequires: python-rpm-macros BuildRequires: python-rpm-macros
# Documentation requirements # Documentation requirements
@@ -58,14 +56,14 @@ Documentation and help files for %{name}.
%autosetup -p1 -n billiard-%{version} %autosetup -p1 -n billiard-%{version}
%build %build
%pyproject_wheel %python_build
pushd Doc pushd Doc
sphinx-build -b html . html sphinx-build -b html . html
rm -r html/.buildinfo html/.doctrees rm -r html/.buildinfo html/.doctrees
popd popd
%install %install
%pyproject_install %python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib} %python_expand %fdupes %{buildroot}%{$python_sitelib}
%python_expand %fdupes %{buildroot}%{$python_sitearch} %python_expand %fdupes %{buildroot}%{$python_sitearch}
@@ -75,8 +73,7 @@ popd
%files %{python_files} %files %{python_files}
%doc CHANGES.txt README.rst %doc CHANGES.txt README.rst
%license LICENSE.txt %license LICENSE.txt
%{python_sitelib}/billiard %{python_sitelib}/*
%{python_sitelib}/billiard-%{version}.dist-info
%files -n %{name}-doc %files -n %{name}-doc
%doc Doc/html %doc Doc/html