diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 674bc52c7b..cb1eb7d42e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -161,7 +161,6 @@ jobs: pip install pytest-sphinx pip install -e ./ - micromamba list && pip freeze python -c 'import pytensor; print(pytensor.config.__str__(print_doc=False))' python -c 'import pytensor; assert pytensor.config.blas__ldflags != "", "Blas flags are empty"' env: diff --git a/pytensor/link/c/cmodule.py b/pytensor/link/c/cmodule.py index d206c650e0..5e2e37bbe8 100644 --- a/pytensor/link/c/cmodule.py +++ b/pytensor/link/c/cmodule.py @@ -74,6 +74,7 @@ def is_GCCLLVMType(fn: Callable[[], bool | None]) -> GCCLLVMType: _logger = logging.getLogger("pytensor.link.c.cmodule") +_logger.setLevel(logging.DEBUG) METH_VARARGS = "METH_VARARGS" METH_NOARGS = "METH_NOARGS"