The Generate database action is breaking because __init.py__ is calling the version.py module created by setuptools which is not supposed to be in the repo. Not sure if the call to version in init.py should be removed.
Traceback (most recent call last):
File "/home/runner/work/SIMPLE-db/SIMPLE-db/simple/utils/generate_database.py", line 9, in <module>
from simple.schema import REFERENCE_TABLES
File "/home/runner/work/SIMPLE-db/SIMPLE-db/./simple/__init__.py", line 1, in <module>
from .version import version as __version__
ModuleNotFoundError: No module named 'simple.version'
The Generate database action is breaking because
__init.py__
is calling theversion.py
module created bysetuptools
which is not supposed to be in the repo. Not sure if the call to version ininit.py
should be removed.Broken action: https://github.com/SIMPLE-AstroDB/SIMPLE-db/actions/runs/11921063937