Skip to content
Snippets Groups Projects
Commit 0afe5941 authored by Thomas Kluyver's avatar Thomas Kluyver
Browse files

Save string path to python instead of Path object in YAML

parent fb9f928d
No related branches found
No related tags found
1 merge request!544Reproducibility, step 1
...@@ -1061,7 +1061,7 @@ def run(): ...@@ -1061,7 +1061,7 @@ def run():
'author': author, 'author': author,
} }
metadata['python-environment'] = { metadata['python-environment'] = {
'path': user_venv, 'path': python_exe,
'python-version': get_python_version(python_exe), 'python-version': get_python_version(python_exe),
} }
metadata.save() metadata.save()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment