lsst-utils 29.2025.1900__py3-none-any.whl → 29.2025.2000__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -139,17 +139,21 @@ def get_multiband_plot_linestyles() -> dict:
139
139
  """
140
140
  plot_line_styles = {
141
141
  "u": "--",
142
- "g": ":",
143
- "r": "-",
144
- "i": "-.",
145
- "z": "--",
142
+ "g": (0, (3, 1, 1, 1)),
143
+ "r": "-.",
144
+ "i": "-",
145
+ "z": (0, (3, 1, 1, 1, 1, 1)),
146
146
  "y": ":",
147
147
  }
148
148
 
149
- # TODO [DM-49724]: The initial version of this used the following for
150
- # z and y bands. Due to a matplotlib bug, this does not work. It should
151
- # be restored to this behavior beginning with rubinenv 11, if possible.
152
- # "z": (0, (3, 5, 1, 5, 1, 5)),
153
- # "y": (0, (3, 1, 1, 1)),
154
-
149
+ # [SP-2200]: Restored to using parametric values.
150
+ # To avoid matplotlib v3.10 bug (see DM-49724),
151
+ # manually iterate over `patches` object returned
152
+ # by `plt.hist` when using histtype='step':
153
+ # _, _, patches = plt.hist()
154
+ # linestyle = plot_line_styles[band]
155
+ # for patch in patches:
156
+ # patch.set_linestyle(linestyle)
157
+ # It seems the bug will be fixed in matplotlib v.3.10.2,
158
+ # see DM-49724[TODO]
155
159
  return plot_line_styles
lsst/utils/version.py CHANGED
@@ -1,2 +1,2 @@
1
1
  __all__ = ["__version__"]
2
- __version__ = "29.2025.1900"
2
+ __version__ = "29.2025.2000"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lsst-utils
3
- Version: 29.2025.1900
3
+ Version: 29.2025.2000
4
4
  Summary: Utility functions from Rubin Observatory Data Management for the Legacy Survey of Space and Time (LSST).
5
5
  Author-email: Rubin Observatory Data Management <dm-admin@lists.lsst.org>
6
6
  License: BSD 3-Clause License
@@ -16,17 +16,17 @@ lsst/utils/tests.py,sha256=1cjyXtEL2LNhnPKjtiTt9cdPmlaEWgaWBx9BfM-xSmA,39152
16
16
  lsst/utils/threads.py,sha256=WNl3uvbE7bx5UyxTX0fwN5AkU3Yty_m8y_pMKcMCdv8,2551
17
17
  lsst/utils/timer.py,sha256=Vt5yTuyGL-EAQ9ZE9rtzYLNRQDQ3njN97J5_kZn9Kh4,19923
18
18
  lsst/utils/usage.py,sha256=qunydx-KlcbNp-vFcBtvBayWwZAa0tHtSWvz5BycvLA,4598
19
- lsst/utils/version.py,sha256=duakYcQBT5t4KBaOX14WCtq_sSvpoXvNcxi3sUb8GvI,55
19
+ lsst/utils/version.py,sha256=bT9RvvieKvOl5VImh838xbe0jWwzezTNwq19FWhF5NU,55
20
20
  lsst/utils/wrappers.py,sha256=KCvsrGXziLQ5pC8ytiFEXeDH9mBSo8eCZ8g08f7s404,19209
21
21
  lsst/utils/plotting/__init__.py,sha256=OEAZv2W12UAcUfDxH5H_k8v7cK4fVTOssuqNksZTuIs,507
22
- lsst/utils/plotting/figures.py,sha256=dPJfP0W-GkRhv6bEiPzH7kLV0a4MIrtavmLbGv7Wt9E,4167
22
+ lsst/utils/plotting/figures.py,sha256=DQ04TU94yPi7e6MtgTAn2Kb3CG7M-AauNpN-iabjL-k,4356
23
23
  lsst/utils/plotting/limits.py,sha256=6ilPmb4wg4aVtjlBgm75FPBrjDVSkW_ywZrj_QIQD2U,5839
24
24
  lsst/utils/plotting/publication_plots.py,sha256=nwttKC3818okJFZrquuRDDsnOys3WflGGZOmpZ0hcLI,4739
25
25
  lsst/utils/plotting/rubin.mplstyle,sha256=SaonqdWUIOT8Z4f5oplS21Z6wmYVjuCs--PyJnjS8us,1084
26
- lsst_utils-29.2025.1900.dist-info/licenses/COPYRIGHT,sha256=I6Bxnp_LkIqDjafZNIXM8jfjYWC4XIlpNpZ7jkdeZK0,361
27
- lsst_utils-29.2025.1900.dist-info/licenses/LICENSE,sha256=7wrtgl8meQ0_RIuv2TjIKpAnNrl-ODH-QLwyHe9citI,1516
28
- lsst_utils-29.2025.1900.dist-info/METADATA,sha256=ANxPW4PKoqla8ES6HaY8F90hyFSo9FDLoWSgrprRwA8,1691
29
- lsst_utils-29.2025.1900.dist-info/WHEEL,sha256=0CuiUZ_p9E4cD6NyLD6UG80LBXYyiSYZOKDm5lp32xk,91
30
- lsst_utils-29.2025.1900.dist-info/top_level.txt,sha256=eUWiOuVVm9wwTrnAgiJT6tp6HQHXxIhj2QSZ7NYZH80,5
31
- lsst_utils-29.2025.1900.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
32
- lsst_utils-29.2025.1900.dist-info/RECORD,,
26
+ lsst_utils-29.2025.2000.dist-info/licenses/COPYRIGHT,sha256=I6Bxnp_LkIqDjafZNIXM8jfjYWC4XIlpNpZ7jkdeZK0,361
27
+ lsst_utils-29.2025.2000.dist-info/licenses/LICENSE,sha256=7wrtgl8meQ0_RIuv2TjIKpAnNrl-ODH-QLwyHe9citI,1516
28
+ lsst_utils-29.2025.2000.dist-info/METADATA,sha256=Qj9TeKPM_xfXPr9gat3GpuUEn93Bz1sPID4p5NTYFKk,1691
29
+ lsst_utils-29.2025.2000.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
30
+ lsst_utils-29.2025.2000.dist-info/top_level.txt,sha256=eUWiOuVVm9wwTrnAgiJT6tp6HQHXxIhj2QSZ7NYZH80,5
31
+ lsst_utils-29.2025.2000.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
32
+ lsst_utils-29.2025.2000.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.3.1)
2
+ Generator: setuptools (80.7.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5