public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Orion Poplawski <orion@nwra.com>
To: git-commits@fedoraproject.org
Subject: [rpms/python-boltons] rawhide: Update to 26.0.0 upstream release
Date: Sun, 21 Jun 2026 20:55:19 GMT [thread overview]
Message-ID: <178207531925.1.13126752331590850378.rpms-python-boltons-f940f023fe7a@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/python-boltons
Branch : rawhide
Commit : f940f023fe7aa492a3ee3c20028be95a1b103fe9
Author : Orion Poplawski <orion@nwra.com>
Date : 2026-06-21T12:48:57-06:00
Stats : +7/-41 in 5 file(s)
URL : https://src.fedoraproject.org/rpms/python-boltons/c/f940f023fe7aa492a3ee3c20028be95a1b103fe9?branch=rawhide
Log:
Update to 26.0.0 upstream release
- Resolves: rhbz#2490675
Commit authored by Packit automation (https://packit.dev/)
---
diff --git a/.gitignore b/.gitignore
index 09c631a..fa4c1c1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@
/boltons-24.0.0.tar.gz
/boltons-24.1.0.tar.gz
/boltons-25.0.0.tar.gz
+/boltons-26.0.0.tar.gz
diff --git a/README.packit b/README.packit
new file mode 100644
index 0000000..dd0af79
--- /dev/null
+++ b/README.packit
@@ -0,0 +1,3 @@
+This repository is maintained by packit.
+https://packit.dev/
+The file was generated using packit 1.16.1.
diff --git a/a2af585.patch b/a2af585.patch
deleted file mode 100644
index 3407f72..0000000
--- a/a2af585.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From a2af58548936c51a3d859f780e54ba170a6829bb Mon Sep 17 00:00:00 2001
-From: Steve Kowalik <steven@wedontsleep.org>
-Date: Mon, 15 Dec 2025 14:38:06 +1100
-Subject: [PATCH] Support pytest 9 changes
-
-Starting from pytest 7, the py.path arguments to pytest's hook functions
-have been deprecated, replaced with pathlib.Path equivalents. Since
-pytest 7 is the minimum version we support, move to using it.
----
- tests/conftest.py | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/tests/conftest.py b/tests/conftest.py
-index d4d2192c..e2c9a0cf 100644
---- a/tests/conftest.py
-+++ b/tests/conftest.py
-@@ -5,12 +5,12 @@
- _VERSION_MARKER = re.compile(r'_py(?P<major_version>\d)(?P<minor_version>\d)?')
-
-
--def pytest_ignore_collect(path, config):
-+def pytest_ignore_collect(collection_path, config):
- """
- Ignore tests that end with _pyX, where X does not equal this
- interpreter's major version.
- """
-- filename = path.basename
-+ filename = collection_path.name
- modulename = filename.split('.', 1)[0]
- match = _VERSION_MARKER.search(modulename)
- if not match:
diff --git a/python-boltons.spec b/python-boltons.spec
index 3f9f98d..2feaaa7 100644
--- a/python-boltons.spec
+++ b/python-boltons.spec
@@ -1,5 +1,5 @@
Name: python-boltons
-Version: 25.0.0
+Version: 26.0.0
Release: %autorelease
Summary: Functionality that should be in the standard library
@@ -7,14 +7,11 @@ License: BSD-3-Clause
URL: https://github.com/mahmoud/boltons
%global pypi_name boltons
Source: %{pypi_source}
-# Fix pytest 9 compatibility: py.path.local arguments deprecated
-Patch: https://github.com/mahmoud/boltons/commit/a2af585.patch
BuildArch: noarch
BuildRequires: python3-devel
BuildRequires: python3-pytest
BuildRequires: make
-BuildRequires: python3-sphinx
%global _description %{expand:
Boltons is a set of over 230 BSD-licensed, pure-Python utilities in the same
@@ -50,13 +47,10 @@ Summary: %{summary}
%build
%pyproject_wheel
export READTHEDOCS=True
-make -C docs man
%install
%pyproject_install
-mkdir -p %{buildroot}%{_mandir}/man1
-install -m644 docs/_build/man/boltons.1 %{buildroot}%{_mandir}/man1/
%pyproject_save_files boltons
@@ -65,8 +59,7 @@ install -m644 docs/_build/man/boltons.1 %{buildroot}%{_mandir}/man1/
%files -n python3-boltons -f %{pyproject_files}
-%doc CHANGELOG.md README.md TODO.rst
-%{_mandir}/man1/boltons.1*
+%doc CHANGELOG.md README.md
%changelog
diff --git a/sources b/sources
index a5ac632..fb9da19 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (boltons-25.0.0.tar.gz) = 4a1c9a511d5628c21c0416f289260f0dcbf4ebc38338d8dbf2d9a7ee8031b5d69c74ca6f5bc0a97fee1773a6e86fdb470af9b643f0c0b89db23987fe842dff4f
+SHA512 (boltons-26.0.0.tar.gz) = c2f1f61d57ad9716da07a0d8f128cf8624f9c9134d659f7f7f6fe87471e1738a5ce29f486f8cf2348e292c4f30e500825b45577cefefa54c5a67e5acbc09813f
reply other threads:[~2026-06-21 20:55 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=178207531925.1.13126752331590850378.rpms-python-boltons-f940f023fe7a@fedoraproject.org \
--to=orion@nwra.com \
--cc=git-commits@fedoraproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox