public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Packit <hello@packit.dev>
To: git-commits@fedoraproject.org
Subject: [rpms/python-fsspec] f45: Update to 2026.7.0 upstream release
Date: Tue, 18 Aug 2026 18:09:47 GMT [thread overview]
Message-ID: <178707658774.1.15381506165026676393.rpms-python-fsspec-0a1957b0c663@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/python-fsspec
Branch : f45
Commit : 0a1957b0c66307af2df84ae1393b3497e32d0fe6
Author : Packit <hello@packit.dev>
Date : 2026-08-18T13:24:55-04:00
Stats : +4/-40 in 5 file(s)
URL : https://src.fedoraproject.org/rpms/python-fsspec/c/0a1957b0c66307af2df84ae1393b3497e32d0fe6?branch=f45
Log:
Update to 2026.7.0 upstream release
Commit authored by Packit automation (https://packit.dev/)
---
diff --git a/.gitignore b/.gitignore
index ed93a80..8455ebb 100644
--- a/.gitignore
+++ b/.gitignore
@@ -61,3 +61,4 @@
/fsspec-2026.3.0.tar.gz
/fsspec-2026.4.0.tar.gz
/fsspec-2026.6.0.tar.gz
+/fsspec-2026.7.0.tar.gz
diff --git a/0001-ftp-Make-deprecated-TLS-versions-optional.patch b/0001-ftp-Make-deprecated-TLS-versions-optional.patch
deleted file mode 100644
index 1e7c98e..0000000
--- a/0001-ftp-Make-deprecated-TLS-versions-optional.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From dea258bd3c10e4bcdc9627474f36b25b25b70dae Mon Sep 17 00:00:00 2001
-From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
-Date: Sun, 21 Jun 2026 22:25:20 -0400
-Subject: [PATCH] ftp: Make deprecated TLS versions optional
-
-When built against OpenSSL 4, Python 3.15 will not have any of these
-deprecated symbols.
-
-Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
----
- fsspec/implementations/ftp.py | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/fsspec/implementations/ftp.py b/fsspec/implementations/ftp.py
-index 053472e..5f20d43 100644
---- a/fsspec/implementations/ftp.py
-+++ b/fsspec/implementations/ftp.py
-@@ -9,11 +9,11 @@ from ..utils import infer_storage_options, isfilelike
-
- SECURITY_PROTOCOL_MAP = {
- "tls": ssl.PROTOCOL_TLS,
-- "tlsv1": ssl.PROTOCOL_TLSv1,
-- "tlsv1_1": ssl.PROTOCOL_TLSv1_1,
-- "tlsv1_2": ssl.PROTOCOL_TLSv1_2,
- "sslv23": ssl.PROTOCOL_SSLv23,
- }
-+for protocol in ["TLSv1", "TLSv1_1", "TLSv1_2"]:
-+ if hasattr(ssl, f"PROTOCOL_{protocol}"):
-+ SECURITY_PROTOCOL_MAP[protocol.lower()] = getattr(ssl, f"PROTOCOL_{protocol}")
-
-
- class ImplicitFTPTLS(FTP_TLS):
---
-2.54.0
-
diff --git a/README.packit b/README.packit
index 4e76cbe..09d231a 100644
--- a/README.packit
+++ b/README.packit
@@ -1,3 +1,3 @@
This repository is maintained by packit.
https://packit.dev/
-The file was generated using packit 1.16.0.post1.dev8+g8a0482385.
+The file was generated using packit 1.16.2.post1.dev12+g819bb7962.
diff --git a/python-fsspec.spec b/python-fsspec.spec
index b2e8246..77d440b 100644
--- a/python-fsspec.spec
+++ b/python-fsspec.spec
@@ -6,15 +6,13 @@
%global srcname fsspec
Name: python-%{srcname}
-Version: 2026.6.0
+Version: 2026.7.0
Release: %autorelease
Summary: Specification for Pythonic file system interfaces
License: BSD-3-Clause
URL: https://github.com/fsspec/filesystem_spec
Source: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz
-# https://github.com/fsspec/filesystem_spec/pull/2056
-Patch: 0001-ftp-Make-deprecated-TLS-versions-optional.patch
BuildArch: noarch
diff --git a/sources b/sources
index fe47569..a751f1d 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (fsspec-2026.6.0.tar.gz) = d05023fe56a643bfcfe7cd02898734334d78c9d72ad37be19778263ec25aa3ce2a66c26f3fc4468090dec4e93e17acb79a583ff622fe77b5a3b9fdc095730f7d
+SHA512 (fsspec-2026.7.0.tar.gz) = 31ece98f2c7f4213caffe4bcbe26ad2e861b6dd0ba0a719b1086695a3d6fd8d79069c734c472a1eb62ee89636b0c46f2d5801276f81b055aa7c420b69e5c9ab9
reply other threads:[~2026-08-18 18:09 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=178707658774.1.15381506165026676393.rpms-python-fsspec-0a1957b0c663@fedoraproject.org \
--to=hello@packit.dev \
--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