File tree Expand file tree Collapse file tree 3 files changed +11
-4
lines changed
Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ Bug fixes:
4242- [ micromamba, libmamba] Graceful handling of download cancel/interruption by @Klaim in < https://github.com/mamba-org/mamba/pull/4146 >
4343- [ micromamba, libmamba] fix: Do not show activation message for dry runs by @jjerphan in < https://github.com/mamba-org/mamba/pull/4140 >
4444- [ libmamba] fix: Only call ` get_all_running_processes_info ` when needed by @mihaitodor in < https://github.com/mamba-org/mamba/pull/4135 >
45- - [ libmamba] Add #include <functional > for std::ref by @opoplawski in < https://github.com/mamba-org/mamba/pull/4132 >
45+ - [ libmamba] Add ` #include <functional> ` for std::ref by @opoplawski in < https://github.com/mamba-org/mamba/pull/4132 >
4646
4747CI fixes and doc:
4848
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ Bug fixes:
3838- Graceful handling of download cancel/interruption by @Klaim in < https://github.com/mamba-org/mamba/pull/4146 >
3939- fix: Do not show activation message for dry runs by @jjerphan in < https://github.com/mamba-org/mamba/pull/4140 >
4040- fix: Only call ` get_all_running_processes_info ` when needed by @mihaitodor in < https://github.com/mamba-org/mamba/pull/4135 >
41- - Add #include <functional > for std::ref by @opoplawski in < https://github.com/mamba-org/mamba/pull/4132 >
41+ - Add ` #include <functional> ` for std::ref by @opoplawski in < https://github.com/mamba-org/mamba/pull/4132 >
4242
4343CI fixes and doc:
4444
Original file line number Diff line number Diff line change @@ -345,8 +345,15 @@ namespace mambapy
345345 .def (" __copy__" , ©<UnresolvedChannel>)
346346 .def (" __deepcopy__" , &deepcopy<UnresolvedChannel>, py::arg (" memo" ))
347347 .def_property_readonly (" type" , &UnresolvedChannel::type)
348- .def_property_readonly (" location" , &UnresolvedChannel::location)
349- .def_property_readonly (" platform_filters" , &UnresolvedChannel::platform_filters);
348+ .def_property_readonly (
349+ " location" ,
350+ [](const UnresolvedChannel& self) -> std::string { return self.location (); }
351+ )
352+ .def_property_readonly (
353+ " platform_filters" ,
354+ [](const UnresolvedChannel& self) -> const UnresolvedChannel::platform_set&
355+ { return self.platform_filters (); }
356+ );
350357
351358 py::class_<BasicHTTPAuthentication>(m, " BasicHTTPAuthentication" )
352359 .def (
You can’t perform that action at this time.
0 commit comments