Update dependency lazy-object-proxy to v1.10.0 #11
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:
==1.4.1
->==1.10.0
Release Notes
ionelmc/python-lazy-object-proxy (lazy-object-proxy)
v1.10.0
Compare Source
v1.9.0
Compare Source
@
).from lazy_object_proxy import Proxy
and the C extension is not available).
Previously the "slots" implementation was used but as it turns out it is slower on Python 3.
v1.8.0
Compare Source
#​62 <https://github.com/ionelmc/python-lazy-object-proxy/pull/62>
_.v1.7.1
Compare Source
Removed most of the Python 2 support code and fixed
python_requires
to require at least Python 3.6.Note that 1.7.0 has been yanked because it could not install on Python 2.7.
Installing lazy-object-proxy on Python 2.7 should automatically fall back to the 1.6.0 release now.
v1.7.0
Compare Source
Switched CI to GitHub Actions, this has a couple consequences:
Python 2 specific handling will be removed at some point.
musllinux
andmanylinux2014
variants.Fixed
__index__
to fallback toint
if the wrapped object doesn't have an__index__
method.This prevents situations where code using a proxy would otherwise likely just call
int
had the objectnot have an
__index__
method.v1.6.0
Compare Source
Added support for async special methods (
__aiter__
,__anext__
,__await__
,__aenter__
,__aexit__
).These are used in the
async for
,await` and
async with`` statements.Note that
__await__
returns a wrapper that tries to emulate the crazystuff going on in the ceval loop, so there will be a small performance overhead.
Added the
__resolved__
property. You can use it to check if the factory hasbeen called.
v1.5.2
Compare Source
(not supported on newest image with Python 3.9).
v1.5.1
Compare Source
v1.5.0
Compare Source
__fspath__
.v1.4.3
Compare Source
v1.4.2
Compare Source
pyproject.toml
to allow users install the sdist with old python/setuptools, as thesetuptools-scm dep will be fetched by pip instead of setuptools.
Fixes
#​30 <https://github.com/ionelmc/python-lazy-object-proxy/issues/30>
_.Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), 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.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.