Claire's Monster
Claire's Monster
Maybe something like this: ``` f"\n Previous action: {self.action[i-1]} for node: {ast.unparse(action.node)}" f"\n Action attempted: {action} for node: {ast.unparse(action.node)}" ```
Yes, I saw this as well. It seems to originate from a "data"source" creating the KrakenExchange passing an empty string (not None) in the `**init_params` and causing the Tier initialization...
@cardosofede I use `install-all-conda.sh` to install the `hummingbot-development` environment, then can compile and run the tests. Currently, nose limits the use of python >3.10. I remove coinbase that requires websockets>12...
Oh, very nice: I install with conda: ``` pydantic-core-2.27.2 | 1.6 MB | ########## | 100% ``` But pip decides, nope, I will blindly do whatever fit my fancy: ```...
@cardosofede It passed. Both injective-py and dydx_v4 are in the environment (even if I have to remove the tests)
Do I need to submit a new PR with clean commits?
Could it be that this needs to be updated by testing CMake `PKG_CONFIG_EXECUTABLE`: `cmake/SetSystemLibIfExists.cmake` ``` function (SetSystemLibIfExists) set(ENV{PKG_CONFIG_PATH} "$ENV{PKG_CONFIG_PATH};$ENV{CONDA_PREFIX}/Library/lib/pkgconfig;$ENV{CONDA_PREFIX}/lib/pkgconfig") if(CMAKE_SYSTEM_NAME STREQUAL "Windows") set(PKG_CONFIG_EXECUTABLE "${PKG_CONFIG_EXECUTABLE};--msvc-syntax;--dont-define-prefix") endif() pkg_check_modules(VENDORED_AS_SYSTEM_LIB IMPORTED_TARGET GLOBAL ${VENDORED_LIBRARY_PKG_CONFIG}>=${VENDORED_LIBRARY_PKG_CONFIG_VERSION}) endfunction()...
> I don't know enough about scikit-build-core or CMake to find where to add the above code. You could also combine it in: `cmake/SetSystemLibIfExists.cmake`, I think this is the only...
> but I do not see the instructions that would actually install the devel files that pkg-config would look for The whole `verify_shared` flow was added because in conda-forge we...
> And then there is another mystery, is the `find_package(PkgConfig)` even needed to be a requirement Do you mean that we only need to execute pkg-config.exe and thus could simply...