Skip to content
Snippets Groups Projects
Commit 41120ead authored by Andrew Rowley's avatar Andrew Rowley
Browse files

Almost - need to be strings!

parent 96443362
No related branches found
No related tags found
2 merge requests!391create new experimental release,!390Add java spinnaker
......@@ -37,7 +37,7 @@ class PySpinnfrontendcommon(PythonPackage):
# Work out the python version installed, so we know where to put
# the java code!
python_spec = find("python@3.7:")[0]
python_version = ".".join(python_spec.version.version[0:2])
python_version = ".".join(str(v) for v in python_spec.version.version[0:2])
python_lib = f"python{python_version}"
site_packages = prefix.lib.join(python_lib).site_packages
install_tree("JavaSpiNNaker", site_packages)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment