File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 11Release notes
22=============
33
4+ Changes from 0.7.0 to 0.7.1
5+ ---------------------------
6+
7+ - Fix use of ``expand `` in ``.as_dataframe() `` for ``AUX_OBS ``
8+
49Changes from 0.6.2 to 0.7.0
510---------------------------
611
Original file line number Diff line number Diff line change 3535from ._api .upload import DataUpload
3636from ._api .token import TokenManager
3737
38- __version__ = "0.7.1-alpha.1 "
38+ __version__ = "0.7.1"
Original file line number Diff line number Diff line change @@ -817,7 +817,9 @@ def _csv_to_df(csv_data):
817817 "SW_OPER_AUX_OBSS2_"
818818 ]
819819 if collection not in obs_collections :
820- raise ValueError (f"Invalid collection: { collection } " )
820+ raise ValueError (
821+ f"Invalid collection: { collection } . Must be one of: { obs_collections } ."
822+ )
821823 if start_time and end_time :
822824 start_time = parse_datetime (start_time )
823825 end_time = parse_datetime (end_time )
You can’t perform that action at this time.
0 commit comments