-
Notifications
You must be signed in to change notification settings - Fork 17
Description
-
pgdb executable script on Windows:
Issue: The script is not generated correctly.
Proposed Fix: Update setup.py to use entry_points = {'console_scripts': []} instead of scripts = [] for better cross-platform compatibility. This requires rewriting bin/pgdb as a function and relocating it to the polyglotdb directory. -
Specify scipy version:
Requirement: conch-sounds uses scipy < 1.13. Recent changes in scipy~=1.13 caused ImportError: cannot import name 'gaussian' from 'scipy.signal'.
Proposed Fix: Specify scipy version ~= 1.12.0 -
python setup.py install / setup.py install:
Issue: This approach to install package from source code is outdated.
Proposed Fix: May consider updating to a more modern practice with pyproject.toml and 'pip install .' -
setuptools.command.test:
Issue: This test command provided by setuptools is deprecated.
Proposed Fix: Remove the test command from setup.py