Skip to content

Commit

Permalink
Fix import issue with missing modules.
Browse files Browse the repository at this point in the history
  • Loading branch information
DinoBektesevic committed Jan 16, 2024
1 parent 82f31c3 commit b2fcd9a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,10 @@ packages =
kbmod.search
kbmod.analysis
kbmod.filters
kbmod.standardizers
kbmod.standardizers.fits_standardizers
zip_safe = "False"
install_requires =
install_requires =
astropy>=5.1
astroquery>=0.4.6
matplotlib>=3.5
Expand All @@ -49,7 +51,7 @@ install_requires =
PyYAML>=6.0
chardet
astro_metadata_translator>=25.2023.2200

[options.extras_require]
analysis =
tensorflow>=2.9
Expand Down
2 changes: 1 addition & 1 deletion src/kbmod/standardizers/butler_standardizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import numpy as np
from scipy.signal import convolve2d

from kbmod.standardizers import Standardizer, StandardizerConfig
from .standardizer import Standardizer, StandardizerConfig
from kbmod.search import LayeredImage, RawImage, PSF


Expand Down

0 comments on commit b2fcd9a

Please sign in to comment.