diff --git a/sacred/dependencies.py b/sacred/dependencies.py index efd0afb3..8470c048 100644 --- a/sacred/dependencies.py +++ b/sacred/dependencies.py @@ -377,7 +377,7 @@ def get_py_file_if_possible(pyc_name): """Try to retrieve a X.py file for a given X.py[c] file.""" - if pyc_name.endswith((".py", ".so", ".pyd", ".ipynb")): + if pyc_name.endswith((".py", ".so", ".pyd", ".ipynb", ".pyx")): return pyc_name assert pyc_name.endswith(".pyc") non_compiled_file = pyc_name[:-1]