forked from pool/python-gevent
Compare commits
12 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 0db02f50f4 | |||
| 179ad3aa3a | |||
| 3d367a31f3 | |||
| 3d9afc0221 | |||
| 8e98e6e02a | |||
| 6bc85bcc79 | |||
| 16c36a2e56 | |||
| da0a140f6e | |||
| 0db3ce2a8b | |||
| a056c9851d | |||
| bddde4f858 | |||
| 91b148b5aa |
BIN
gevent-25.4.2.tar.gz
LFS
Normal file
BIN
gevent-25.4.2.tar.gz
LFS
Normal file
Binary file not shown.
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:582c948fa9a23188b890d0bc130734a506d039a2e5ad87dae276a456cc683e61
|
|
||||||
size 6388207
|
|
||||||
@@ -1,27 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Mon Jun 23 20:17:43 UTC 2025 - Matej Cepl <mcepl@cepl.eu>
|
|
||||||
|
|
||||||
- Tolerating failing test suite (gh#gevent/gevent#2118,
|
|
||||||
bsc#1245168).
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Wed Jun 11 09:52:58 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
|
||||||
|
|
||||||
- Update to 25.5.1
|
|
||||||
* Update the bundled libuv to 1.51 from 1.44.2.
|
|
||||||
* Note that this changes the minimum supported versions of various
|
|
||||||
operating systems. Linux now requires kernel 3.10 and glibc 2.17,
|
|
||||||
up from 2.6.32 and glibc 2.12; macOS now requires version 11, up
|
|
||||||
from version 10.15; Windows now requires Windows 10 and Visual
|
|
||||||
Studio 2017, up from Windows 8 and VS 2015; finally, FreeBSD now
|
|
||||||
requires version 12, up from version 10.
|
|
||||||
* The musl Linux wheels are now built with muslinux_1_2 instead of
|
|
||||||
musllinux_1_1. See issue #2108.
|
|
||||||
* Add support for Cython 3.1 on Windows.
|
|
||||||
* Add support for Python 3.14b1 and significantly expand the set of
|
|
||||||
standard library tests we run with monkey-patching.
|
|
||||||
- Update BuildRequires and Requires from pyproject.toml
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri May 9 15:54:04 UTC 2025 - Bernhard Wiedemann <bwiedemann@suse.com>
|
Fri May 9 15:54:04 UTC 2025 - Bernhard Wiedemann <bwiedemann@suse.com>
|
||||||
|
|
||||||
|
|||||||
@@ -26,7 +26,7 @@
|
|||||||
%bcond_with colortest
|
%bcond_with colortest
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-gevent
|
Name: python-gevent
|
||||||
Version: 25.5.1
|
Version: 25.4.2
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Python network library that uses greenlet and libevent
|
Summary: Python network library that uses greenlet and libevent
|
||||||
License: MIT
|
License: MIT
|
||||||
@@ -43,7 +43,7 @@ BuildRequires: %{python_module backports.entry_points_selectable}
|
|||||||
BuildRequires: %{python_module cffi}
|
BuildRequires: %{python_module cffi}
|
||||||
BuildRequires: %{python_module devel >= 3.8}
|
BuildRequires: %{python_module devel >= 3.8}
|
||||||
BuildRequires: %{python_module dnspython}
|
BuildRequires: %{python_module dnspython}
|
||||||
BuildRequires: %{python_module greenlet >= 3.2.2}
|
BuildRequires: %{python_module greenlet >= 3.0.0}
|
||||||
BuildRequires: %{python_module objgraph}
|
BuildRequires: %{python_module objgraph}
|
||||||
BuildRequires: %{python_module pip}
|
BuildRequires: %{python_module pip}
|
||||||
BuildRequires: %{python_module psutil}
|
BuildRequires: %{python_module psutil}
|
||||||
@@ -62,7 +62,7 @@ BuildRequires: pkgconfig(libuv)
|
|||||||
Requires: python-backports.entry_points_selectable
|
Requires: python-backports.entry_points_selectable
|
||||||
Requires: python-cffi
|
Requires: python-cffi
|
||||||
Requires: python-dnspython
|
Requires: python-dnspython
|
||||||
Requires: python-greenlet >= 3.2.2
|
Requires: python-greenlet >= 3.0.0
|
||||||
Requires: python-requests
|
Requires: python-requests
|
||||||
Requires: python-zope.event
|
Requires: python-zope.event
|
||||||
Requires: python-zope.interface
|
Requires: python-zope.interface
|
||||||
@@ -154,7 +154,6 @@ export LANG=en_US.UTF-8
|
|||||||
# Relax the crypto policies for the test-suite
|
# Relax the crypto policies for the test-suite
|
||||||
export OPENSSL_SYSTEM_CIPHERS_OVERRIDE=xyz_nonexistent_file
|
export OPENSSL_SYSTEM_CIPHERS_OVERRIDE=xyz_nonexistent_file
|
||||||
export OPENSSL_CONF=''
|
export OPENSSL_CONF=''
|
||||||
# TOLERATING FAILING TEST SUITE (gh#gevent/gevent#2118)
|
|
||||||
%{!?_with_colortest:export TEST_NOCOLOR=1}
|
%{!?_with_colortest:export TEST_NOCOLOR=1}
|
||||||
%{python_expand #
|
%{python_expand #
|
||||||
export PYTHONPATH=%{buildroot}%{$python_sitearch}
|
export PYTHONPATH=%{buildroot}%{$python_sitearch}
|
||||||
@@ -162,7 +161,7 @@ $python -m gevent.tests \
|
|||||||
--ignore skip_tests.txt \
|
--ignore skip_tests.txt \
|
||||||
-u-network \
|
-u-network \
|
||||||
--verbose \
|
--verbose \
|
||||||
%{?_smp_mflags} || true
|
%{?_smp_mflags}
|
||||||
}
|
}
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
|
|||||||
Reference in New Issue
Block a user