Compare commits
15 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| d65171621a | |||
| 1adf2dbb3b | |||
| b03751e333 | |||
| a1fdb5962d | |||
| f38f2114fb | |||
| aaed0a46d0 | |||
| 274df78395 | |||
| 3513a80141 | |||
| 31f5d79378 | |||
| 6c01faadd4 | |||
| b7277e5db9 | |||
| 641efab5eb | |||
| ecad723caa | |||
| 9a39afb3d7 | |||
| dd29903f60 |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:43374442353259554ce33599da8b692d5aa96f8976d567d4badf263371fbe491
|
||||
size 182013
|
||||
3
greenlet-3.2.4.tar.gz
Normal file
3
greenlet-3.2.4.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0dca0d95ff849f9a364385f36ab49f50065d76964944638be9691e1832e9f86d
|
||||
size 188260
|
||||
@@ -1,3 +1,83 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 1 12:37:08 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 3.2.4
|
||||
* Various small build/test changes for less common configurations (e.g.,
|
||||
building CPython with assertions enabled but NOT debugging),
|
||||
contributed by Michał Górny. Note that while greenlet will BUILD in
|
||||
a free-threaded Python, it will cause the GIL to be allocated and
|
||||
used, and memory may leak. Also note that these configurations
|
||||
are not tested by this project's CI.
|
||||
* Fix an assertion error on debug builds of Python 3.14 when using the
|
||||
experimental JIT. See PR 460.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jun 11 09:26:37 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 3.2.3
|
||||
* Make greenlet build and run on Python 3.14 beta 2 on Windows amd64.
|
||||
* Potentially fix build on NetBSD/sparc64. See PR 447.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 12 12:16:08 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 3.2.2
|
||||
* Make greenlet build and run on Python 3.14 beta 1. It will not run
|
||||
on earlier versions of 3.14; it should run on subsequent versions.
|
||||
See PR 445.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 29 09:23:14 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 3.2.1
|
||||
* Fix a crash regression for Riscv64. See issue 443.
|
||||
- from version 3.2.0
|
||||
* Remove support for Python 3.7 and 3.8.
|
||||
* Add untested, community supported implementation for RiscV 32. See PR 438.
|
||||
* Make greenlet build and run on Python 3.14a7. It will not build on earlier
|
||||
3.14 alpha releases, and may not build on later 3.14 releases.
|
||||
* Packaging: Use PEP 639 license expressions and include license files.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 27 10:27:38 UTC 2024 - ecsos <ecsos@opensuse.org>
|
||||
|
||||
- Fix build error under Leap.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 26 13:37:06 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 3.1.1
|
||||
* Fix crashes on 32-bit PPC Linux. Note that there is no CI for this,
|
||||
and support is best effort; there may be other issues lurking.
|
||||
* Remove unnecessary logging sometimes during interpreter shutdown.
|
||||
* Fix some crashes on 32-bit PPC MacOS. This is a very old platform,
|
||||
and is only known to be tested on beta versions of an operating
|
||||
system that was never released, using the GCC 14 only provided by
|
||||
MacPorts; it may or may not work on the final MacOS X release that
|
||||
supported 32-bit PowerPC. It has the known issue of leaking memory
|
||||
when greenlets are used in multiple threads. Help debugging this
|
||||
would be appreciated.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 10 20:44:39 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 3.1.0
|
||||
* Adds support for Python 3.13.
|
||||
* Greatly reduce the chances for crashes during interpreter shutdown.
|
||||
* Support for the following platforms was contributed by the community.
|
||||
Note that they are untested by this project's continuous integration
|
||||
services.
|
||||
+ Hitachi's SuperH CPU
|
||||
+ NetBSD on PowerPC
|
||||
+ RISC-V with -fno-omit-frame-pointer
|
||||
- Drop port-to-python313.patch, merged upstream
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 9 09:29:56 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Cherry-pick upstream patch to add support for Python 3.13
|
||||
* port-to-python313.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 10 22:14:16 UTC 2024 - Ben Greiner <code@bnavigator.de>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-greenlet
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
# Copyright (c) 2010 B1 Systems GmbH, Vohburg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
@@ -22,7 +22,7 @@
|
||||
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-greenlet
|
||||
Version: 3.0.3
|
||||
Version: 3.2.4
|
||||
Release: 0
|
||||
Summary: Lightweight in-process concurrent programming
|
||||
License: MIT
|
||||
@@ -36,7 +36,13 @@ BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module psutil}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: %{python_module wheel}
|
||||
BuildRequires: c++_compiler
|
||||
%if 0%{?suse_version} < 1600
|
||||
BuildRequires: gcc12
|
||||
BuildRequires: gcc12-c++
|
||||
%else
|
||||
BuildRequires: gcc
|
||||
BuildRequires: gcc-c++
|
||||
%endif
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
%if %{with docs}
|
||||
@@ -65,6 +71,10 @@ This package contains header files required for C modules development.
|
||||
sed -i '1{/env python/d}' src/greenlet/tests/test_version.py
|
||||
|
||||
%build
|
||||
%if 0%{?suse_version} < 1600
|
||||
export CC=gcc-12
|
||||
export CXX=g++-12
|
||||
%endif
|
||||
export CFLAGS="%{optflags} -fno-tree-dominator-opts -fno-strict-aliasing"
|
||||
%pyproject_wheel
|
||||
|
||||
|
||||
Reference in New Issue
Block a user