Skip to content

Commit 5c0d99a

Browse files
Jammy2211Jammy2211
authored andcommitted
tqdl requirements
1 parent 8e2fa61 commit 5c0d99a

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

autoarray/dataset/interferometer/dataset.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,10 @@ def __init__(
105105
self.w_tilde = w_tilde
106106

107107
if raise_error_dft_visibilities_limit:
108-
if self.uv_wavelengths.shape[0] > 10000 and transformer_class == TransformerDFT:
108+
if (
109+
self.uv_wavelengths.shape[0] > 10000
110+
and transformer_class == TransformerDFT
111+
):
109112
raise exc.DatasetException(
110113
"""
111114
Interferometer datasets with more than 10,000 visibilities should use the TransformerNUFFT class for

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ dependencies = [
3232
"matplotlib>=3.7.0",
3333
"scipy<=1.14.0",
3434
"scikit-image<=0.24.0",
35-
"scikit-learn<=1.5.1"
35+
"scikit-learn<=1.5.1",
36+
"tqdm"
3637
]
3738

3839
[project.urls]

0 commit comments

Comments
 (0)