Old releases of superset had the package name superset while the new releases are named apache-superset as noted here https://pypi.org/project/superset/.
Superset has moved to apache-superset, as of 0.34.0 onwards, please pip install apache-superset
In ketchup's setup.py file, the minimal requirement is superset and for the newer versions, it would be apache-superset.
This requires an edit to the install_requires values to support both by either:
- Adding a script to check which superset is installed then assign it to a variable that will be used by install_requires
- Remove the minimal requirement of having superset(testing if this will work)