Federico Ceratto
Federico Ceratto
It would be useful to have an automated one-command method to generate documentation to be used by library users, tool users and package maintainers. It should provide: - generate docs...
Nimble shipped with Nim 1.0.2 suggests that version as default value for the compiler version: ```requires "nim >= 1.0.2"``` This is too aggressive for the majority of future releases. It...
Gunicorn cannot log natively into journald it seems. As a workaround a log handler can be added at start time: ``` log = logging.getLogger("foo") log.addHandler(JournalHandler(SYSLOG_IDENTIFIER="foo")) ``` However the access log...
Flasgger 0.9.5 seems to raise an empty exception when handling a GET request to an API path (not the documentation page) The traceback is logged as: ``` Oct 09 14:57:19...
Hello and thanks for developing swagger. It would be very useful to be able to extract a YAML/JSON file from the docstrings. It would allow keeping the API specs close...
Hello, on PinePhone (running Mobian, Phosh on Wayland) tigr crashes out with a rather opaque GLXBadFBConfig error. `glxinfo | grep -e "OpenGL version" -e "Core" -e "Compatible"` returns `OpenGL version...
Releases
Hello and thank you for developing nim.nvim - could you kindly make releases/git tags when useful? Thanks
Hello and thanks for developing the driver. insert_dataframe(...) is attempting to cast a string column into int. The column is a `String` in the database. The raised exception `ValueError: invalid...
Hello and thanks for developing the library. I'm able to reproduce https://github.com/mymarilyn/clickhouse-driver/issues/318 with version 0.2.5 with a minimal example: ``` CREATE TABLE mytest ( `status` String ) ENGINE = ReplacingMergeTree...