comicfans

Results 39 comments of comicfans

maybe we need to run all tests in CI by a --with-pydebug enabled python interpreter. currently I can't finish the python test ``` python3.10 alltests.py False codegen_check_digits 15 python3.10: Objects/typeobject.c:3813:...

I don't know too much about cpython implementation. default python build will disable lots of checks, thus even native extension didn't follow cpython's requirements can run. but during casadi checking,...

according to SWIG [release notes](https://github.com/swig/swig/blob/master/RELEASENOTES): https://github.com/swig/swig/blob/e587e2be0dacc014b85d4ac256ce918fb14e7f4a/RELEASENOTES#L79 Python 3.9-3.11 support added. in swig 4.1.0. I tried swig 4.1.0/4.2.0/master, although alltests.py still failed with ``` function NLPtests.test_simple_bounds_detect_solvers at 0x7f83f5980050> Not available NLP...

Hello, I wonder if casadi plan to release new version (3.6.4 but built with latest swig) on pip with updated swig ? I looked into the workflow folder, seems binaries.yaml...

Hi , I tried to build with up to date swig locally and create release with github workflow, https://github.com/comicfans/casadi/releases/tag/nightly-3.6.4-swig-fix-python, is it possible to including these changes and publish a new...

I suggest a patch as follows ```diff diff --git a/include/pybind11/stl.h b/include/pybind11/stl.h index 01be0b47..ab276722 100644 --- a/include/pybind11/stl.h +++ b/include/pybind11/stl.h @@ -21,6 +21,7 @@ #include #include #include +#include #include #include #include @@...

hello , I want to reopen this issue. with version e4007551 (which already including b8e5fd) I have similar crash with following backtrace ``` #5 0x0000559e22be5248 in buf_signcols_count_range (buf=, row1=6, row2=7,...

Hello ,I’ve installed rustup binary(itself) from trusted source (official website), but due to internet restriction , I have to use RUSTUP_DIST_SERVER to download toolchain(for higher speed) , but I’d like...

@kinnison Thanks for explanation , so that means if I setup https RUSTUP_DIST_SERVER (with valid ssl), the update index and download binary are both downloaded from dist server and it...