py-isort: updated to 9.0.1
9.0.0 August 26 2026
- Remove logic for deprecated options
- Sort lazy import statements
- Add initial support for Python 3.15
- Compile with `mypyc`
- Cache calls to `posixpath.abspath`
- Consider private `stdlib` modules to be `stdlib`
- Add CLI Flag for --forced-separate (https://github.com/PyCQA/isort/pull/2367) @hirak99
- Add separate_packages option
- Fix inline comment duplication across merged `from X import` lines
- Fix src glob patterns passed via CLI
- Fix opening-line comment moving to alias attribute line on wrapped imports
- Fix multi_line_output=3/5 ignored when wrapping single imports with inline comments
- Fix false positive in `check_code` when using `float_to_top` + `add_imports`
- Fix: preserve bare `#` inline comments on imports
- Fix grouping of non-aliased imports when mixed with aliased imports from the same module
[34 lines not shown]
py-djangorestframework: updated to 3.18.1
3.18.1
Bug fixes
Fix duplicate validation errors for GenericIPAddressField with protocol
Fix int64 format detection for negative IntegerField minimums in OpenAPI schema definition
Fix list serializer on unique constraint validator
Reject non-finite values (nan, inf) in FloatField
Other changes
Add a compatibility setting for ListSerializer error formats
Expand deprecation classes and review deprecation policy
py-numpy: updated to 2.5.3
2.5.3
MAINT: Prepare 2.5.x for further development
BUG: raise ValueError when reading into record array with references...
BUG: avoid uninitialized memory access / NULL-pointer deref in...
TYP: fix ``np.random.{get,set}_bit_generator`` implicit re-exports...
BUG: don't assume strides are a multiple of itemsize in stringdtype...
CI: fix ccache CC override, add CXX in mac Conda CI
BUG: Fix ref leak in _convert_from_type for custom scalar types...
BUG: fix a number of issues around iterators and StringDType...
TST: avoid allocating huge tuple of arrays in concatenate test...
BUG: avoid possible UB in 'safe' multiplication helpers
MAINT: use ``PyObject_`` functions instead of raw ``PyArray_ ones``
BUG: validate UTF-8 and harden StringDType bounds handling
BUG: fix two error handling mistakes in stringdtype replace loop...
BUG: fix visibility annotations for functions in StringDType...
MAINT: Update ml_dtypes pin to 8/21/2026.
[12 lines not shown]
net/coturn: Update to 4.18.0
Upstream NEWS content, less bugfixes and minor improvements:
Release 4.18.0
Changelist:
- Deprecate option drop-invalid-packets (#2078) (Pavel Punsky <eakraly at users.noreply.github.com>)
math/bcal: update to 2.6
Changes:
- support native prompt and history without readline (`make O_NORL=1`)
- add `strip` and static build (`make O_STATIC=1`) options
- show prompt help and allow `c` and `p` commands in either REPL mode
- add `BCAL_BIT_ANSI_COLOR_CODE` to customize set bit color
- add sum() function for whitespace-separated numbers
- add `-H` option to show integral maths results in hexadecimal
Package changes:
- Support for 'readline' and 'editline' options
textproc/rumdl: update to 0.2.68
v0.2.68
Fixed
MDX: recognize Markdown links and images inside JSX elements, including generated reference tables, without requiring blank lines. This removes false MD091 warnings and lets normal link rules check the content. JavaScript expressions, JSX attributes, comments, and code are excluded, and link fixes preserve source labels and positions (#801).
Performance
Reduce regex locking and redundant rule work.
Precompute proper-name lookups and streamline regex caching.
v0.2.67
Fixed
code-block-tools: survive a tool that exits without reading its input (a3f2b15)
MD042: do not report an image with an unparseable destination as an empty link (600236e)
code-block-tools: report missing tool binaries instead of passing silently (fd83c4b)
code-block-tools: report tool failures from the format path (4f92370)
[91 lines not shown]
devel/mise: update to 2026.9.1
This is an update over 16 releases and it's impossible to reproduce the changes here.
See upstream chamgelog for details.
py-falcon: updated to 4.3.1
4.3.1
This is a :ref:`SemVer <semver>` patch release that makes Falcon's own test
suite compatible with the recently released ``cbor2`` 6.x series.
Documentation and tests aside, this release is functionally identical to
:doc:`Falcon 4.3.0 <4.3.0>`.
py-cairosvg: updated to 2.9.1
2.9.1
WARNING: this is a security update.
Specially crafted SVGs with very long paths could lead to exponential rendering times.
Support path-like objects for the url parameter
Fix support of Windows paths
py-pandas-datareader: updated to 0.11.1
v0.11.0 (June 2026)
Highlights include:
- Restored import and runtime compatibility with pandas 3 by removing the
dependency on pandas internal decorator APIs.
- Vendored ``deprecate_kwarg`` to remove dependency on the private
``pandas.util._decorators`` module.
- Fixed default date sanitization on pandas 3, where ``to_datetime(None)``
now yields ``NaT`` instead of preserving ``None``.
- Added a new high-level ``pandas_datareader.macro`` API providing unified
access to FRED, Eurostat, and OECD macro datasets via ``read_macro``,
``search_macro_datasets``, and ``describe_macro_dataset``.
- Narrowed the default public API surface to focus on macro and widely-used
data sources; securities-related readers that relied on defunct or broken
upstream APIs have been removed.
- Added import smoke coverage and explicit pandas 3 CI lanes.