17
0

4 Commits

Author SHA256 Message Date
bcf84d5660 Accepting request 1313891 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1313891
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-billiard?expand=0&rev=27
2025-10-28 13:46:43 +00:00
5bdfd49f4e - update to 4.2.2
* Add codespell support (config, workflow to detect/not fix) and
    make it fix few typos
  * initial python 3.13 support
  * Copy `code.co_qualname` on Python >= 3.11
  * Added DeepWiki to README
  * Fix the failing pre-commit.ci job
  * GitHub Actions: Test on Python 3.14 release candidate 2

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-billiard?expand=0&rev=63
2025-10-27 15:49:38 +00:00
2e39524639 Accepting request 1283505 from devel:languages:python
- Switch to pyproject macros.
- No more greedy globs in %files.

OBS-URL: https://build.opensuse.org/request/show/1283505
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-billiard?expand=0&rev=26
2025-06-06 20:43:28 +00:00
08e12571be - Switch to pyproject macros.
- No more greedy globs in %files.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-billiard?expand=0&rev=61
2025-06-06 05:39:26 +00:00
4 changed files with 29 additions and 8 deletions

View File

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

3
billiard-4.2.2.tar.gz Normal file
View File

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

View File

@@ -1,3 +1,21 @@
-------------------------------------------------------------------
Mon Oct 27 15:38:45 UTC 2025 - Markéta Machová <mmachova@suse.com>
- update to 4.2.2
* Add codespell support (config, workflow to detect/not fix) and
make it fix few typos
* initial python 3.13 support
* Copy `code.co_qualname` on Python >= 3.11
* Added DeepWiki to README
* Fix the failing pre-commit.ci job
* GitHub Actions: Test on Python 3.14 release candidate 2
-------------------------------------------------------------------
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>

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-billiard
#
# Copyright (c) 2024 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
@@ -18,16 +18,18 @@
%{?sle15_python_module_pythons}
Name: python-billiard
Version: 4.2.1
Version: 4.2.2
Release: 0
Summary: Python multiprocessing fork
License: BSD-3-Clause
Group: Development/Languages/Python
URL: https://github.com/celery/billiard
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 pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
# Documentation requirements
@@ -56,14 +58,14 @@ Documentation and help files for %{name}.
%autosetup -p1 -n billiard-%{version}
%build
%python_build
%pyproject_wheel
pushd Doc
sphinx-build -b html . html
rm -r html/.buildinfo html/.doctrees
popd
%install
%python_install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%python_expand %fdupes %{buildroot}%{$python_sitearch}
@@ -73,7 +75,8 @@ popd
%files %{python_files}
%doc CHANGES.txt README.rst
%license LICENSE.txt
%{python_sitelib}/*
%{python_sitelib}/billiard
%{python_sitelib}/billiard-%{version}.dist-info
%files -n %{name}-doc
%doc Doc/html