Compare commits

...
Sign in to create a new pull request.

8 commits

Author SHA1 Message Date
John Eckersberg
f3965c2bb3 New upstream release 6.0.3
Resolves: rhbz#2398910
2025-09-30 09:38:23 -04:00
Python Maint
0437d4abe6 Rebuilt for Python 3.14.0rc3 bytecode 2025-09-19 14:51:38 +02:00
Miro Hrončok
072a6204e1 Drop unneeded build dependency on python3-wheel
Motivated by https://github.com/fedora-eln/eln/issues/284
2025-08-27 13:08:16 +02:00
Python Maint
b879ba0bb0 Rebuilt for Python 3.14.0rc2 bytecode 2025-08-15 15:14:28 +02:00
Fedora Release Engineering
53e5626e58 Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild 2025-07-23 15:56:40 +00:00
Python Maint
1a65ed4019 Rebuilt for Python 3.14 2025-06-02 22:53:19 +02:00
Fedora Release Engineering
bc3aaf9607 Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild 2025-01-16 08:55:12 +00:00
Jonathan Wright
b879627e2a update to 6.0.2 2024-12-31 15:11:10 -06:00
4 changed files with 6 additions and 49 deletions

2
.gitignore vendored
View file

@ -22,3 +22,5 @@ PyYAML-3.09.tar.gz
/6.0b1.tar.gz
/6.0.tar.gz
/6.0.1.tar.gz
/6.0.2.tar.gz
/6.0.3.tar.gz

View file

@ -1,39 +0,0 @@
From 17dc5b6cd96dcfe64fd71789c771ca9b96d260e5 Mon Sep 17 00:00:00 2001
From: "Andrew J. Hesford" <ajh@sideband.org>
Date: Fri, 21 Jul 2023 09:50:00 -0400
Subject: [PATCH] Fix builds with Cython 3
This is a *de minimis* fix for building with Cython 3. Recent Cython<3
releases provided `Cython.Distutils.build_ext` as an alias to
`Cython.Distutils.old_build_ext.old_build_ext`; Cython 3 drops this
alias and instead uses a wholly new `Cython.Distutils.build_ext` that
does not provide the `cython_sources` function used in `setup.py`.
Explicitly importing `old_build_ext` preserves the existing behavior for
recent Cython<3 and uses the correct behavior for Cython 3. Should the
import fail (*e.g.*, because the version of Cython available predates
the availability of `old_build_ext`), the import falls back to just
`Cython.Distutils.build_ext`.
Signed-off-by: Andrew J. Hesford <ajh@sideband.org>
---
setup.py | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/setup.py b/setup.py
index 944e7fa2..462b1e95 100644
--- a/setup.py
+++ b/setup.py
@@ -82,7 +82,11 @@
with_cython = True
try:
from Cython.Distutils.extension import Extension as _Extension
- from Cython.Distutils import build_ext as _build_ext
+ try:
+ from Cython.Distutils.old_build_ext import old_build_ext as _build_ext
+ except ImportError:
+ from Cython.Distutils import build_ext as _build_ext
+
with_cython = True
except ImportError:
if with_cython:

View file

@ -1,5 +1,5 @@
Name: PyYAML
Version: 6.0.1
Version: 6.0.3
Release: %autorelease
Summary: YAML parser and emitter for Python
@ -8,13 +8,10 @@ License: MIT
URL: https://github.com/yaml/pyyaml
Source: https://github.com/yaml/pyyaml/archive/%{version}.tar.gz
# Fix build with Cython 3
# Proposed upstream but refused (upstream does not want Cython 3)
Patch: https://github.com/yaml/pyyaml/pull/731.patch
BuildRequires: gcc
BuildRequires: libyaml-devel
BuildRequires: python3-devel
BuildRequires: python3-pytest
%global _description\
@ -48,9 +45,6 @@ chmod a-x examples/yaml-highlight/yaml_hl.py
# remove pre-generated file
rm -rf ext/_yaml.c
# we have a patch for Cython 3
sed -i 's/Cython<3.0/Cython/' pyproject.toml
%generate_buildrequires
%pyproject_buildrequires
@ -66,7 +60,7 @@ sed -i 's/Cython<3.0/Cython/' pyproject.toml
%check
%{py3_test_envvars} %{python3} tests/lib/test_all.py
%pytest
%files -n python3-pyyaml -f %{pyproject_files}

View file

@ -1 +1 @@
SHA512 (6.0.1.tar.gz) = 1c74a92a4ad7d47854dc7bcb2e89b3c8e0b14fa815c7dbfbc22b24480dbba6c81e971c77ee384c494a960914b95f06edf943d7431925a5ed674a0ba830d258e0
SHA512 (6.0.3.tar.gz) = a0da43e32d127409ad61b11dc1d733b2e9c743977b3d72c05c81fc2ab183b40bc284452b0874dbeae1a736e1cd4a34f0df641ceefd5e9df38b3e53155fc5f633