Skip to content

Commit

Permalink
add sympy to dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
landmanbester committed Feb 21, 2024
1 parent 4b0509f commit 2e8d9ed
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion pfb/operators/gridder.py
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,10 @@ def image_data_products(uvw,
nx, ny,
cellx, celly,
robustness)
wgt *= imwgt
if wgt is not None:
wgt *= imwgt
else:
wgt = imwgt

if do_weight:
out_dict['WEIGHT'] = wgt
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
# "ipdb",
"numba < 0.59",
"ducc0",
"QuartiCal"
"QuartiCal",
# "@git+https://github.com/ratt-ru/QuartiCal.git"
# "@bandpass_smoothing"

"sympy"
]


Expand Down

0 comments on commit 2e8d9ed

Please sign in to comment.