camold

Results 6 comments of camold

Still not solved. Here is a minimal example: ```python import pyscipopt m = pyscipopt.Model("test") m.redirectOutput() m.optimize() # writes out the usual log files m.writeProblem("test.mps") # writes the model description (in...

Hi @pawamoy, thanks for pointing out that we are using a legacy handler. I guess there was a phase where our docs were not supported yet so I kept working...

That worked indeed. At least there are no runtime errors anymore. I did notice a change though from pytkdocs to griffe. Before, if I had submodules, pytkdocs would list them...

Great. Thanks for pointing that out. It worked just fine. However, submodules that have a function with the same name in it will not be processed (they don't show up...

Some further investigations. The [docs suggest support for the `typing` module](https://pandera.readthedocs.io/en/stable/dtype_validation.html#support-for-the-python-typing-module). But this does not resolve the problem since it yields the same types. ```python PathDataFrame.to_schema().dtypes # {'path': DataType()} PathDataFrame.to_schema().dtypes["path"].type...

Found a workaround - probably ugly and it will most likely have side effects that I cannot foresee. `to_json_schema` does this: ```python schema = cls.to_schema() empty = pd.DataFrame(columns=schema.columns.keys()).astype( {k: v.type...