Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adapted objects module to allow for package importation #600

Merged
merged 2 commits into from
May 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def example_dataset_adi():
psf = vip.fits.open_fits(f2)

# create dataset object
dataset = vip.Dataset(
dataset = vip.objects.Dataset(
cube, angles=angles, psf=psf, px_scale=vip.config.VLT_NACO["plsc"]
)

Expand Down Expand Up @@ -113,7 +113,7 @@ def example_dataset_ifs():
wl = vip.fits.open_fits(f4)

# create dataset object
dataset = vip.Dataset(
dataset = vip.objects.Dataset(
cube,
angles=angles,
psf=psf,
Expand Down Expand Up @@ -168,7 +168,7 @@ def example_dataset_ifs_crop():
wl = wl[-3:]

# create dataset object
dataset = vip.Dataset(
dataset = vip.objects.Dataset(
cube,
angles=angles,
psf=psf,
Expand Down Expand Up @@ -237,7 +237,7 @@ def example_dataset_rdi():
cube_ref = cube_rot + scrcu

# create dataset object
dataset = vip.Dataset(
dataset = vip.objects.Dataset(
cube,
angles=angles,
psf=psf,
Expand Down
2 changes: 1 addition & 1 deletion vip_hci/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.4.1"
__version__ = "1.4.2"


from . import preproc
Expand Down