Skip to content

Commit

Permalink
Merge pull request #1736 from larrybradley/datasets-reorg
Browse files Browse the repository at this point in the history
Reorganize dataset submodule
  • Loading branch information
larrybradley committed May 15, 2024
2 parents f3ad32c + cf70720 commit a183c60
Show file tree
Hide file tree
Showing 13 changed files with 1,446 additions and 1,330 deletions.
7 changes: 7 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@ API Changes
- The ``photutils.test`` function has been removed. Instead use the
``pytest --pyargs photutils`` command. [#1725]

- ``photutils.datasets``

- The ``photutils.datasets`` subpackage has been reorganized and
the ``make`` module has been deprecated. Instead of importing
functions from ``photutils.datasets.make``, import functions from
``photutils.datasets``. [#1726]


1.12.0 (2024-04-12)
-------------------
Expand Down
5 changes: 4 additions & 1 deletion photutils/datasets/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,8 @@
examples and tests.
"""

from .images import * # noqa: F401, F403
from .load import * # noqa: F401, F403
from .make import * # noqa: F401, F403
from .noise import * # noqa: F401, F403
from .sources import * # noqa: F401, F403
from .wcs import * # noqa: F401, F403

0 comments on commit a183c60

Please sign in to comment.