Skip to content

Commit

Permalink
Set this to be version 3.1.0
Browse files Browse the repository at this point in the history
update a few deprecation warnings that were missing version limits
  • Loading branch information
bhazelton authored and mkolopanis committed Oct 22, 2024
1 parent afd1e39 commit 87bd9f6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [3.0.1] - 2024-7-1
## [3.1.0] - 2024-10-22

### Added
- New analytic beam classes: AiryBeam, GaussianBeam, ShortDipoleBeam, UniformBeam
Expand Down
2 changes: 1 addition & 1 deletion src/pyuvdata/telescopes.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def __getitem__(self, key):
"Directly accessing the KNOWN_TELESCOPES dict is deprecated. If you "
"need a telescope location, use the known_telescope_location function. "
"For a full Telescope object use the classmethod "
"Telescope.from_known_telescopes.",
"Telescope.from_known_telescopes. This will become an error in version 3.2",
DeprecationWarning,
)
if key in ["latitude", "longitude", "altitude", "center_xyz"]:
Expand Down
3 changes: 2 additions & 1 deletion src/pyuvdata/utils/pol.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ def _x_orientation_rep_dict(x_orientation):
"""
warnings.warn(
"This function (_x_orientation_rep_dict) is deprecated, use "
"pyuvdata.utils.pol.x_orientation_pol_map instead.",
"pyuvdata.utils.pol.x_orientation_pol_map instead."
" This will become an error in version 3.2",
DeprecationWarning,
)

Expand Down

0 comments on commit 87bd9f6

Please sign in to comment.