|
1 | | -from autoconf import jax_wrapper |
2 | | -from autoconf.dictable import register_parser |
3 | | -from autoconf import conf |
| 1 | +from autonerves import jax_wrapper |
| 2 | +from autonerves.dictable import register_parser |
| 3 | +from autonerves import conf |
4 | 4 |
|
5 | 5 | conf.instance.register(__file__) |
6 | 6 |
|
|
97 | 97 | from .structures.visibilities import Visibilities |
98 | 98 | from .structures.visibilities import VisibilitiesNoiseMap |
99 | 99 |
|
100 | | -from autoconf import conf |
101 | | -from autoconf.fitsable import ndarray_via_hdu_from |
102 | | -from autoconf.fitsable import ndarray_via_fits_from |
103 | | -from autoconf.fitsable import header_obj_from |
104 | | -from autoconf.fitsable import output_to_fits |
105 | | -from autoconf.fitsable import hdu_list_for_output_from |
| 100 | +from autonerves import conf |
| 101 | +from autonerves.fitsable import ndarray_via_hdu_from |
| 102 | +from autonerves.fitsable import ndarray_via_fits_from |
| 103 | +from autonerves.fitsable import header_obj_from |
| 104 | +from autonerves.fitsable import output_to_fits |
| 105 | +from autonerves.fitsable import hdu_list_for_output_from |
106 | 106 |
|
107 | 107 | conf.instance.register(__file__) |
108 | 108 |
|
109 | 109 | __version__ = "2026.7.9.1" |
110 | 110 |
|
111 | 111 | # --------------------------------------------------------------------------- |
112 | | -# Public re-export of the autoconf configuration / serialization surface. |
| 112 | +# Public re-export of the autonerves configuration / serialization surface. |
113 | 113 | # |
114 | 114 | # Workspaces, tutorials and downstream code import these names from the science |
115 | 115 | # library (e.g. ``from autolens import conf``) rather than depending on the |
116 | | -# ``autoconf`` package directly, so the underlying configuration / serialization |
| 116 | +# ``autonerves`` package directly, so the underlying configuration / serialization |
117 | 117 | # layer stays an implementation detail of the library. |
118 | 118 | # --------------------------------------------------------------------------- |
119 | | -from autoconf import conf |
120 | | -from autoconf import jax_wrapper |
121 | | -from autoconf import fitsable |
122 | | -from autoconf import setup_colab |
123 | | -from autoconf import setup_notebook |
124 | | -from autoconf.conf import with_config |
125 | | -from autoconf.dictable import from_dict, from_json, to_dict, output_to_json |
126 | | -from autoconf.fitsable import ( |
| 119 | +from autonerves import conf |
| 120 | +from autonerves import jax_wrapper |
| 121 | +from autonerves import fitsable |
| 122 | +from autonerves import setup_colab |
| 123 | +from autonerves import setup_notebook |
| 124 | +from autonerves.conf import with_config |
| 125 | +from autonerves.dictable import from_dict, from_json, to_dict, output_to_json |
| 126 | +from autonerves.fitsable import ( |
127 | 127 | output_to_fits, |
128 | 128 | hdu_list_for_output_from, |
129 | 129 | ndarray_via_fits_from, |
130 | 130 | ndarray_via_hdu_from, |
131 | 131 | header_obj_from, |
132 | 132 | ) |
133 | | -from autoconf.test_mode import ( |
| 133 | +from autonerves.test_mode import ( |
134 | 134 | with_test_mode_segment, |
135 | 135 | skip_visualization, |
136 | 136 | skip_fit_output, |
|
0 commit comments