Compare commits

..

20 commits

Author SHA1 Message Date
Fedora Release Engineering
f7a8a27b26 Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild 2026-01-16 02:31:09 +00:00
Charalampos Stratakis
2c6f91d207 Update to 3.2.4
- Fixes: rhbz#2427014
2026-01-15 06:55:58 +01:00
Tomáš Hrnčiar
88f4ce7f6f Update to 3.2.3
- Fixes: rhbz#2419172
2025-12-15 11:56:31 +01:00
Charalampos Stratakis
c094a0ed36 Update to 3.2.1
- Fixes: rhbz#2414622
2025-11-21 23:56:53 +01:00
Charalampos Stratakis
9f329e2bce Update to 3.1.6
- Fixes: rhbz#2405056
2025-10-30 00:47:04 +01:00
Charalampos Stratakis
d26d9ef002 Update to 3.1.4
- Fixes: rhbz#2395654
2025-10-08 21:26:11 +02:00
Python Maint
36d2e823ed Rebuilt for Python 3.14.0rc3 bytecode 2025-09-19 12:12:56 +02:00
Python Maint
df85e60d10 Rebuilt for Python 3.14.0rc2 bytecode 2025-08-15 12:43:36 +02:00
Charalampos Stratakis
5aacdf9933 Update to 3.1.3
- Fixes: rhbz#2388173
2025-08-13 15:06:04 +02:00
Miro Hrončok
4131df3867 CI: Use blas-devel for pip-installed pythran
[skip changelog]
2025-08-06 00:29:04 +02:00
Charalampos Stratakis
eabd7d051c Update to 3.1.2
- Fixes: rhbz#2365167, rhbz#2374314
2025-08-06 00:29:03 +02:00
Fedora Release Engineering
b19df3773e Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild 2025-07-23 15:44:56 +00:00
Python Maint
8479a40394 Unbootstrap for Python 3.14 2025-07-21 11:29:54 +02:00
Python Maint
43375bfd29 Bootstrap for Python 3.14.0b3 bytecode 2025-06-18 15:50:46 +02:00
Python Maint
63e867fd03 Bootstrap for Python 3.14 2025-06-02 20:14:40 +02:00
Charalampos Stratakis
b472f69665 Update to 3.0.12
- Fixes: rhbz#2344778
2025-03-26 22:43:04 +01:00
Miro Hrončok
99c8abe3b7 Avoid accidentally including bogus *.txt files as documentation
- Include README.rst and CHANGES.rst instead

This avoids packaging:

    COPYING.txt and LICENSE.txt (already installed as %license)
    INSTALL.txt (not relevant)
    ToDo.txt (original from pyrex)
    doc-requirements.txt
    test-requirements-27.txt
    test-requirements-312.txt
    test-requirements-34.txt
    test-requirements-36.txt
    test-requirements-cpython.txt
    test-requirements-pypy27.txt
    test-requirements.txt
2025-03-06 19:25:38 +01:00
Benjamin A. Beasley
295d3360cf On 32-bit (ix86), reduce debuginfo level in %check
- Fixes RHBZ#2339845 by avoiding memory exhaustion in test_many_expressions
2025-02-27 08:10:21 -05:00
Fedora Release Engineering
3c76406608 Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild 2025-01-16 08:31:37 +00:00
Sandro
ba2dba1357
Apply patch for NumPy 2.x test failure
It appears to be a cosmetic issue rather than a real failure.
2024-12-25 13:57:51 +01:00
3 changed files with 13 additions and 5 deletions

View file

@ -5,7 +5,7 @@
%bcond cython_compile 1
Name: Cython
Version: 3.0.11
Version: 3.2.4
Release: %autorelease
Summary: Language for writing Python extension modules
@ -96,6 +96,13 @@ Provides: bundled(python3dist(tempita))
%if %{with tests}
%check
%if 0%{?__isa_bits} < 64
# On 32-bit platforms, with their inherent ~4GB/process address space
# limitation, at least test_many_expressions fails due to memory exhaustion
# unless we reduce the debuginfo level (RHBZ#2339845).
export CFLAGS="${CFLAGS} -g1"
%endif
# run.pstats_profile_test* fails on Python 3.12
# https://github.com/cython/cython/issues/5470
# run.numpy_parallel fails on i686
@ -113,7 +120,7 @@ Provides: bundled(python3dist(tempita))
%files -n python3-cython -f %{pyproject_files}
%doc *.txt Demos Doc Tools
%doc README.rst CHANGES.rst USAGE.txt Demos Doc Tools
%{_bindir}/cython
%{_bindir}/cygdb
%{_bindir}/cythonize

View file

@ -1 +1 @@
SHA512 (Cython-3.0.11.tar.gz) = 8f7982af5be1db1072b1090257a9d487dc341d79522f442f4608303d18b388349a7d586ec74e66fbffd0ce88c00ca622202729907fe7cefef71828cfd3f68fe6
SHA512 (Cython-3.2.4.tar.gz) = 5ab8e39739a79debbe89b2ff5b6d88e1b7aafd5ad34460f14f3fc2bd90c10bdc9d6aa5b5844a48e30402dde9790cb9abcba3dc2b4e8cde24c4eeee818a180099

View file

@ -10,10 +10,11 @@ require:
- python3-pip
- python3-numpy
- python3-pytest
- flexiblas-devel # for pythran
- blas-devel # for pythran
# ipython and pythran installed from PyPI, not available in RHEL
# Add ipython again when upstream resolves https://github.com/cython/cython/issues/7075
test: |
pip install ipython==8.24.0 pythran==0.15.0 &&
pip install pythran==0.18.0 &&
cd $(dirname $TMT_SOURCE_DIR/cython-*/tests) &&
python3 runtests.py -vv --no-pyregr --exclude 'run.pstats_profile_test*'
duration: 240m