<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ports/math/py-linearmodels, branch main</title>
<subtitle>FreeBSD ports tree</subtitle>
<id>https://cgit-dev.freebsd.org/ports/atom?h=main</id>
<link rel='self' href='https://cgit-dev.freebsd.org/ports/atom?h=main'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/'/>
<updated>2026-05-05T19:29:37Z</updated>
<entry>
<title>*/*: bump PORTREVISION after switching to NumPy 2.x</title>
<updated>2026-05-05T19:29:37Z</updated>
<author>
<name>Max Brazhnikov</name>
<email>makc@FreeBSD.org</email>
</author>
<published>2026-05-05T19:27:16Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=2bf3834a197ccf8956332378eda8dd7577965246'/>
<id>urn:sha1:2bf3834a197ccf8956332378eda8dd7577965246</id>
<content type='text'>
</content>
</entry>
<entry>
<title>*/*: Switch to NumPy 2.x</title>
<updated>2026-05-05T19:29:37Z</updated>
<author>
<name>Max Brazhnikov</name>
<email>makc@FreeBSD.org</email>
</author>
<published>2026-05-05T19:27:15Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=b0b4d9e1eae890d0de1591e20fb37358439a2ff6'/>
<id>urn:sha1:b0b4d9e1eae890d0de1591e20fb37358439a2ff6</id>
<content type='text'>
PR:		294328
Exp-run:	antoine
</content>
</entry>
<entry>
<title>math/py-linearmodels: update 6.1 → 7.0</title>
<updated>2026-04-18T01:38:07Z</updated>
<author>
<name>Yuri Victorovich</name>
<email>yuri@FreeBSD.org</email>
</author>
<published>2026-04-17T18:27:49Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=74f7b5310f0864f3d30cb99922b58c3fe729d8d8'/>
<id>urn:sha1:74f7b5310f0864f3d30cb99922b58c3fe729d8d8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>python.mk: retire ${PYNUMPY}</title>
<updated>2026-04-03T20:52:43Z</updated>
<author>
<name>Charlie Li</name>
<email>vishwin@FreeBSD.org</email>
</author>
<published>2026-04-03T20:48:09Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=d04d23ae37d04c8ddf74c04ee868900b9189295a'/>
<id>urn:sha1:d04d23ae37d04c8ddf74c04ee868900b9189295a</id>
<content type='text'>
With both math/py-numpy (2) and math/py-numpy1, the variable stopped
making sense. Also remove the upper version bound.
</content>
</entry>
<entry>
<title>math/py-numpy1: bump more RUN_DEPENDS consumers</title>
<updated>2026-04-03T20:01:01Z</updated>
<author>
<name>Charlie Li</name>
<email>vishwin@FreeBSD.org</email>
</author>
<published>2026-04-03T20:01:01Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=1912d150ac52993a0da6f5c68a485a6fd2a87f9d'/>
<id>urn:sha1:1912d150ac52993a0da6f5c68a485a6fd2a87f9d</id>
<content type='text'>
These specify numpy indirectly using a different variable.

PR: 281470
</content>
</entry>
<entry>
<title>Mk/Uses/python.mk: Remove USE_PYTHON=cython3{,_run,_test}</title>
<updated>2026-01-15T17:22:12Z</updated>
<author>
<name>Po-Chuan Hsieh</name>
<email>sunpoet@FreeBSD.org</email>
</author>
<published>2026-01-15T17:22:12Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=6d475ab2dcd08d35a6a3ef6bd9db134e3c7a71f0'/>
<id>urn:sha1:6d475ab2dcd08d35a6a3ef6bd9db134e3c7a71f0</id>
<content type='text'>
- Convert all cython3 occurrence to USE_PYTHON=cython*
- Bump PORTREVISION dependent ports of USE_PYTHON=cython_run for dependency change

PR:		291778
</content>
</entry>
<entry>
<title>python.mk: rename PYTHON_EXT_SUFFIX to PYTHON_TAG, document, etc</title>
<updated>2025-06-19T20:28:47Z</updated>
<author>
<name>Charlie Li</name>
<email>vishwin@FreeBSD.org</email>
</author>
<published>2025-06-19T20:09:42Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=4f0eba1efd73e85ccb544708c967bca70ad3e7a6'/>
<id>urn:sha1:4f0eba1efd73e85ccb544708c967bca70ad3e7a6</id>
<content type='text'>
EXT_SUFFIX, according to PEP 3149, refers to the full tag and
extension for compiled extension module objects, eg .cpython-311.so,
.cpython-313t.so, etc. We do not use the correct semantic meaning,
and this usage becomes ambiguous and confusing when tags do not
match between bytecode and compiled extension module objects.

Rename our PYTHON_EXT_SUFFIX to PYTHON_TAG to align with PEP 3147's
specification of a magic tag, which consists of implementation name
and shorthand version only. This is meant for bytecode and other
files containing this tag in their filename that do not depend on
a specific Python ABI for the same version. Chase all existing
consumers.

Introduce PYTHON_SOABI to align with PEP 3149's specification of a
tag, which consists of implementation name, shorthand version and
any ABI flags present (this and PYTHON_TAG are identical without
ABI flags). This is meant for compiled extension module objects and
other files that depend on a specific Python ABI for the same
version.

Add documentation for these variables that our PYTHON_EXT_SUFFIX
never had.

PR: 274671
Event: Kitchener-Waterloo Hackathon 202506
</content>
</entry>
<entry>
<title>Mk/Uses/python.mk: Introduce USE_PYTHON=cython3{,_run,_test}</title>
<updated>2025-04-09T14:55:11Z</updated>
<author>
<name>Po-Chuan Hsieh</name>
<email>sunpoet@FreeBSD.org</email>
</author>
<published>2025-04-09T14:53:16Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=150c0018fdfece47d43cc508378c8faf26046149'/>
<id>urn:sha1:150c0018fdfece47d43cc508378c8faf26046149</id>
<content type='text'>
- Update USE_PYTHON=cython{,_run,_test}
- Convert all cython3 occurrence to USE_PYTHON=cython3*
- While I'm here, fix incorrect usage of combining cython3 in BUILD_DEPENDS and USE_PYTHON=cython

It is added to simplify the future transition from Cython 0.29 to 3.

The minimal version is set to 3.0.12 because it is required by devel/py-propcache.
The upper bound of version is set to 3.1 because it is limited by multiple ports.
</content>
</entry>
<entry>
<title>python: bump all USE_PYTHON=distutils consumers after RUN_DEPENDS removal</title>
<updated>2025-03-08T04:05:21Z</updated>
<author>
<name>Charlie Li</name>
<email>vishwin@FreeBSD.org</email>
</author>
<published>2025-03-08T02:33:49Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=06a08e69f3acb846ad8252945f53c3a2d211e303'/>
<id>urn:sha1:06a08e69f3acb846ad8252945f53c3a2d211e303</id>
<content type='text'>
Any missed ports, feel free to bump.

Any ports that need setuptools at runtime can have the devel/py-setuptools
manually added back to RUN_DEPENDS, but understand that this practice
is deprecated; see CHANGES for details.
</content>
</entry>
<entry>
<title>math/py-linearmodels: update 6.0 → 6.1</title>
<updated>2024-09-25T08:33:30Z</updated>
<author>
<name>Yuri Victorovich</name>
<email>yuri@FreeBSD.org</email>
</author>
<published>2024-09-25T08:30:05Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=339cc03a0da04f43509e6e08ccea2bce04563776'/>
<id>urn:sha1:339cc03a0da04f43509e6e08ccea2bce04563776</id>
<content type='text'>
Reported by:	portscout
</content>
</entry>
</feed>
