<feed xmlns='http://www.w3.org/2005/Atom'>
<title>packages/lang/python/python-cython/Makefile, branch master</title>
<subtitle>Mirror of packages feed</subtitle>
<id>https://git-03.infra.openwrt.org/feed/packages/atom?h=master</id>
<link rel='self' href='https://git-03.infra.openwrt.org/feed/packages/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/'/>
<updated>2026-03-21T05:47:22Z</updated>
<entry>
<title>python-cython: bump to 3.2.4</title>
<updated>2026-03-21T05:47:22Z</updated>
<author>
<name>Alexandru Ardelean</name>
</author>
<published>2026-03-20T16:42:19Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=10358791fef35524e8da8c9b4972f5ac3c0b4e07'/>
<id>urn:sha1:10358791fef35524e8da8c9b4972f5ac3c0b4e07</id>
<content type='text'>
Changelog since 3.1.5:
- v3.2.0: Type inference for builtin exception types; extended f-string
  syntax (PEP-701); t-strings support (PEP-750); optimized PEP-604 union
  type checks; freelists support for Limited API; faster fused function
  dispatch; efficient C array looping for literal sequences
- v3.2.1: Fix relative imports with shared utility modules; fix GIL
  acquisition crashes under lock congestion in Python 3.11
- v3.2.2: Update C-API declarations for PyDict_*Ref() functions; fix
  invalid C code generation for literal sequences in generators
- v3.2.3: Add PyList_*() function declarations; fix t-strings losing
  final elements in Limited API; fix excessive process requests in
  parallel builds
- v3.2.4: Add @collection_type() decorator; add C++ exception declarations;
  fix pseudo-literal default values in function arguments; reduce pickle
  serialization size for extension types

Full changelog:
https://github.com/cython/cython/releases

Signed-off-by: Alexandru Ardelean &lt;alex@shruggie.ro&gt;
</content>
</entry>
<entry>
<title>treewide: remove myself as maintainer</title>
<updated>2026-03-13T17:53:21Z</updated>
<author>
<name>Jeffery To</name>
</author>
<published>2026-03-13T17:44:30Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=376cbe460ae270c02f2eb245940ddf5d7af9cc96'/>
<id>urn:sha1:376cbe460ae270c02f2eb245940ddf5d7af9cc96</id>
<content type='text'>
slide-switch is my software, I choose to continue to be sole maintainer.
(This was also the case in #28429.)

Signed-off-by: Jeffery To &lt;jeffery.to@gmail.com&gt;
</content>
</entry>
<entry>
<title>treewide: add me as co-maintainer to Jeffery's packages</title>
<updated>2026-03-13T17:04:53Z</updated>
<author>
<name>Alexandru Ardelean</name>
</author>
<published>2026-03-13T17:00:02Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=a7e01c91b60c644d08dd309e78cc7bb83d361d6a'/>
<id>urn:sha1:a7e01c91b60c644d08dd309e78cc7bb83d361d6a</id>
<content type='text'>
Add 'Alexandru Ardelean &lt;ardeleanalex@gmail.com&gt;' as co-maintainer
alongside Jeffery To &lt;jeffery.to@gmail.com&gt; for all packages where
Jeffery To is listed as maintainer.

Supersedes PR: https://github.com/openwrt/packages/pull/28429

We can have another PR where Jeffery removes himself later.

Signed-off-by: Alexandru Ardelean &lt;alex@shruggie.ro&gt;
</content>
</entry>
<entry>
<title>python-cython: add python-setuptools/host as dep</title>
<updated>2025-11-09T14:46:33Z</updated>
<author>
<name>Alexandru Ardelean</name>
</author>
<published>2025-11-08T13:26:52Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=0c37af5289f4ff48ae2534be6da161335eb56ed2'/>
<id>urn:sha1:0c37af5289f4ff48ae2534be6da161335eb56ed2</id>
<content type='text'>
Required now, since python3 doesn't have any setuptools bundled.

Signed-off-by: Alexandru Ardelean &lt;alex@shruggie.ro&gt;
</content>
</entry>
<entry>
<title>python-cython: update to version 3.1.5</title>
<updated>2025-10-31T07:52:11Z</updated>
<author>
<name>Josef Schlehofer</name>
</author>
<published>2025-10-21T22:05:35Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=7f233be4ce527b3f7436a51c14b164e2f64e72f5'/>
<id>urn:sha1:7f233be4ce527b3f7436a51c14b164e2f64e72f5</id>
<content type='text'>
Fixes:
Traceback (most recent call last):
  File "&lt;frozen runpy&gt;", line 198, in _run_module_as_main
  File "&lt;frozen runpy&gt;", line 88, in _run_code
  File "/turris/build/staging_dir/hostpkg/lib/python3.11/site-packages/installer/__main__.py", line 98, in &lt;module&gt;
_main(sys.argv[1:], "python -m installer")
  File "/turris/build/staging_dir/hostpkg/lib/python3.11/site-packages/installer/__main__.py", line 86, in _main
with WheelFile.open(args.wheel) as source:
  File "/turris/build/staging_dir/hostpkg/lib/python3.11/contextlib.py", line 137, in __enter__
return next(self.gen)
   ^^^^^^^^^^^^^^
  File "/turris/build/staging_dir/hostpkg/lib/python3.11/site-packages/installer/sources.py", line 162, in open
with zipfile.ZipFile(path) as f:
 ^^^^^^^^^^^^^^^^^^^^^
  File "/turris/build/staging_dir/hostpkg/lib/python3.11/zipfile.py", line 1311, in __init__
self.fp = io.open(file, filemode)
  ^^^^^^^^^^^^^^^^^^^^^^^
FileNotFoundError: [Errno 2] No such file or directory: '/turris/build/build_dir/hostpkg/pypi/Cython-3.0.10//openwrt-build/Cython-3.0.10-*.whl'

Signed-off-by: Josef Schlehofer &lt;pepe.schlehofer@gmail.com&gt;
</content>
</entry>
<entry>
<title>python-cython: bump to version 3.0.10</title>
<updated>2024-04-17T08:31:26Z</updated>
<author>
<name>Alexandru Ardelean</name>
</author>
<published>2024-04-16T07:31:53Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=e3ed196f2022b1699e2f3e2f6d7544a35d4bd491'/>
<id>urn:sha1:e3ed196f2022b1699e2f3e2f6d7544a35d4bd491</id>
<content type='text'>
Signed-off-by: Alexandru Ardelean &lt;alex@shruggie.ro&gt;
</content>
</entry>
<entry>
<title>python-cython: update to version 3.0.7</title>
<updated>2024-01-02T23:20:06Z</updated>
<author>
<name>Andy Syam</name>
</author>
<published>2023-12-22T14:08:30Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=2cf42672386adfb7cbf7f07128cade6eb4ff4cee'/>
<id>urn:sha1:2cf42672386adfb7cbf7f07128cade6eb4ff4cee</id>
<content type='text'>
Signed-off-by: Andy Syam &lt;privasisource@gmail.com&gt;
</content>
</entry>
<entry>
<title>python-cython: Update to 0.29.36</title>
<updated>2023-07-13T22:03:06Z</updated>
<author>
<name>Jeffery To</name>
</author>
<published>2023-07-13T08:37:05Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=96c4a3f0c705954b43f7bf1b59580ec5ced172da'/>
<id>urn:sha1:96c4a3f0c705954b43f7bf1b59580ec5ced172da</id>
<content type='text'>
Signed-off-by: Jeffery To &lt;jeffery.to@gmail.com&gt;
</content>
</entry>
<entry>
<title>python-cython: Update to 0.29.35</title>
<updated>2023-05-29T15:15:05Z</updated>
<author>
<name>Jeffery To</name>
</author>
<published>2023-05-29T04:19:29Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=f47802949c5660eea67d9e3e242942dbe0489b9d'/>
<id>urn:sha1:f47802949c5660eea67d9e3e242942dbe0489b9d</id>
<content type='text'>
Signed-off-by: Jeffery To &lt;jeffery.to@gmail.com&gt;
</content>
</entry>
<entry>
<title>python-cython: Update to 0.29.34</title>
<updated>2023-04-15T11:22:06Z</updated>
<author>
<name>Jeffery To</name>
</author>
<published>2023-04-15T11:22:06Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=f59b088adb4f0825246bdefd87079e37c3929ff5'/>
<id>urn:sha1:f59b088adb4f0825246bdefd87079e37c3929ff5</id>
<content type='text'>
Signed-off-by: Jeffery To &lt;jeffery.to@gmail.com&gt;
</content>
</entry>
</feed>
