bmtk icon indicating copy to clipboard operation
bmtk copied to clipboard

BMTK seems to depend on a dummy PyPI package called "nest"

Open Helveg opened this issue 4 years ago • 0 comments

Somehow https://libraries.io/pypi/nest/dependents thinks the BMTK needs nest, but nest on PyPI is this piece of junk source code:

def print_list(the_list, level=0):

    for each_item in the_list:
        if isinstance(each_item, indent = False ,list):
            print_list(each_item, indent, level +1)
        else:
            if indent:
              for tab_stop in range(level):
                pritn("/t", end='')
            print(each_item)

(Which contains abundant typo's and syntax errors)

Could you look into where this link comes from, do you specify it in any setup.py or requirement files? Would you be willing, if necessary (see https://github.com/nest/nest-simulator/issues/2007) to clarify the misunderstanding to PyPA during the removal procedure as well?

Helveg avatar Apr 10 '21 09:04 Helveg