public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/python-fsspec] rawhide: Update to 2026.7.0 upstream release
@ 2026-08-18 18:08 Packit
  0 siblings, 0 replies; only message in thread
From: Packit @ 2026-08-18 18:08 UTC (permalink / raw)
  To: git-commits

            A new commit has been pushed.

            Repo   : rpms/python-fsspec
            Branch : rawhide
            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=rawhide

            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

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2026-08-18 18:08 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-08-18 18:08 [rpms/python-fsspec] rawhide: Update to 2026.7.0 upstream release Packit

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox