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

Remove unused parts again

parent 0d7f3e82
No related branches found
No related tags found
No related merge requests found
......@@ -4,11 +4,6 @@
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack.package import *
from spack.store import find
from llnl.util import tty
from os import makedirs
from urllib.request import urlretrieve
import os
_JAR_URL = "https://github.com/SpiNNakerManchester/JavaSpiNNaker/releases/download/7.0.0/spinnaker-exe.jar"
......@@ -42,9 +37,3 @@ class PySpinnfrontendcommon(PythonPackage):
python_version = spec["python"].version.up_to(2)
python_lib = prefix.lib.join(f"python{python_version}")
install_tree("resource_root", python_lib)
# Test where things are now installed
tty.debug(f"Checking contents of {prefix}")
for root, dirnames, filenames in os.walk(prefix):
for filename in filenames:
tty.debug(os.path.join(root, filename))
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