-
-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prepare 0.14.2 #182
Prepare 0.14.2 #182
Conversation
16eb15b
to
cfecd6a
Compare
cfecd6a
to
af6b690
Compare
af6b690
to
4bf7a8d
Compare
## [0.14.1] - 2025-03-05 | ||
|
||
### Ci | ||
|
||
- Update run-on-arch to avoid segfault (Adrian Seyboldt) | ||
|
||
- Repare 0.14.1 (Adrian Seyboldt) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ups. Unfortunately it's autogenerated based on the commit message, so pretty much too late to change now :-(
if outer_kwargs is None: | ||
outer_kwargs = {} | ||
|
||
def make_adapter(*args, **kwargs): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mostly just a stylistic suggestion, but I think using partial
here (like previously) is quite a bit better for static code analysis. Is it possible to import make_transform_adapter
at the top of with_data
, or does it actually need to be imported within make_adapter
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It needs to be imported late unfortunately.
I guess we could have a wrapper module that is empty if the optional dependency is not installed. Maybe that would be cleaner?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That does feel significantly cleaner to my tastes. That way you get separation between the import logic and the inner workings.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Made an issue: #184
if outer_kwargs is None: | ||
outer_kwargs = {} | ||
|
||
def make_adapter(*args, **kwargs): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Other comment also applies here
No description provided.