Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
==3.4.0
->==3.6.2
==1.2.1
->==1.2.2.post1
==5.3.3
->==5.5.0
==2024.2.2
->==2024.12.14
==1.16.0
->==1.17.1
==3.3.2
->==3.4.0
v4.0.1
->v4.6.0
==1.2.1
->==1.3.1
==7.4.4
->==7.6.9
==42.0.5
->==42.0.8
==0.3.8
->==0.3.9
==0.20.1
->==0.21.2
==2.0.1
->==2.1.0
==3.13.3
->==3.16.1
==3.6
->==3.10
==7.1.0
->==7.2.1
==8.23.0
->==8.31.0
==5.2.0
->==5.3.0
==4.0.0
->==4.1.0
==0.19.1
->==0.19.2
==3.1.3
->==3.1.5
==25.1.0
->==25.5.0
==0.1.6
->==0.1.7
==10.2.0
->==10.5.0
==1.9.0
->==1.14.0
==0.2.17
->==0.2.20
==24.0
->==24.2
==2.2.1
->==2.2.3
==2.2.1.240316
->==2.2.3.241126
==10.3.0
->==10.4.0
==24.0
->==24.3.1
==1.10.0
->==1.12.0
==4.2.0
->==4.3.6
==1.4.0
->==1.5.0
==3.0.43
->==3.0.48
==0.2.2
->==0.2.3
==2.17.2
->==2.18.0
==1.0.35
->==1.0.43
==3.6.1
->==3.7.0
==1.6.1
->==1.8.0
==1.0.0
->==1.2.0
==1.0.17
->==1.1.2
==8.1.1
->==8.3.4
==2024.1
->==2024.2
==1.2.39
->==1.2.48
==6.0.1
->==6.0.2
==2.31.0
->==2.32.3
==13.7.1
->==13.9.4
==1.16.0
->==1.17.0
==6.4
->==6.4.2
==4.14.2
->==4.23.2
==5.14.2
->==5.14.3
==5.0.0
->==5.1.1
==0.20.0.20240406
->==0.21.0.20241128
==3.1.0.20240402
->==3.1.5.20241126
==10.2.0.20240406
->==10.2.0.20240822
==7.45.2.20240311
->==7.45.4.20241216
==2.17.0.20240310
->==2.18.0.20240506
==2024.1.0.20240203
->==2024.2.0.20241221
==6.0.12.20240311
->==6.0.12.20241221
==69.2.0.20240317
->==69.5.0.20240522
==1.16.21.20240311
->==1.17.0.20241205
==4.11.0
->==4.12.2
==2024.1
->==2024.2
==2.2.1
->==2.2.3
==20.25.1
->==20.28.0
==2024.4.0
->==2024.9.0
==3.18.1
->==3.21.0
Release Notes
bokeh/bokeh (bokeh)
v3.6.2
Compare Source
v3.6.1
Compare Source
v3.6.0
Compare Source
v3.5.2
Compare Source
v3.5.1
Compare Source
v3.5.0
Compare Source
v3.4.3
Compare Source
v3.4.2
Compare Source
v3.4.1
Compare Source
pypa/build (build)
v1.2.2.post1
Compare Source
This release only makes metadata (Python 3.13 classifier), docs, and test suite changes.
What's Changed
New Contributors
Full Changelog: pypa/build@1.2.2...1.2.2.post1
v1.2.2
Compare Source
==================
builder.get_requries_for_build
's static types(PR :pr:
764
, fixes issue :issue:763
)(PR :pr:
782
)pyproject-hooks
(PR :pr:
788
)network
(PR :pr:
808
)(PR :pr:
804
)uv
optional for tests(PR :pr:
807
and :pr:813
)tkem/cachetools (cachetools)
v5.5.0
Compare Source
===================
TTLCache.expire()
returns iterable of expired(key, value)
pairs.
TLRUCache.expire()
returns iterable of expired(key, value)
pairs.
Documentation improvements.
Update CI environment.
v5.4.0
Compare Source
===================
Add the
keys.typedmethodkey
decorator.Deprecate
MRUCache
class.Deprecate
@func.mru_cache
decorator.Update CI environment.
certifi/python-certifi (certifi)
v2024.12.14
Compare Source
v2024.8.30
Compare Source
v2024.7.4
Compare Source
v2024.6.2
Compare Source
python-cffi/cffi (cffi)
v1.17.1
Compare Source
distutils.msvc9compiler
imports under Windows (#118).ffibuilder.emit_python_code()
andffibuiler.emit_c_code()
accept file-like objects (#115).ffiplatform
calls are bypassed byffibuilder.emit_python_code()
andffibuilder.emit_c_code()
(#81).Full Changelog: python-cffi/cffi@v1.17.0...v1.17.1
v1.17.0
Compare Source
python3.13t
and the3.13t
ABI) are not currently supported.fn = lib.myfunc
, you get an object of a special type for performancereasons, instead of a
<cdata 'C-function-type'>
. Before version 1.17you could only call such objects. You could write
ffi.addressof(lib, "myfunc")
in order to get a real<cdata>
object,based on the idea that in these cases in C you'd usually write
&myfunc
instead of
myfunc
. In version 1.17, the special objectlib.myfunc
can now be passed in many places where CFFI expectsa regular
<cdata>
object. For example, you can now passit as a callback to a C function call, or write it inside a C
structure field of the correct pointer-to-function type, or use
ffi.cast()
orffi.typeof()
on it.Full Changelog: python-cffi/cffi@v1.16.0...v1.17.0
Ousret/charset_normalizer (charset-normalizer)
v3.4.0
Compare Source
Added
--no-preemptive
in the CLI to prevent the detector to search for hinConfiguration
📅 Schedule: Branch creation - "before 1pm on Monday" in timezone Europe/Helsinki, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.