Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BUG: fix numpy dev version as their versioning system changed #481

Merged
merged 1 commit into from
Aug 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyvo/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
ASTROPY_HEADER = False

# Keep this until we require numpy to be >=2.0
if minversion(np, "2.0.0.dev0+151"):
if minversion(np, "2.0.0.dev0+git20230726"):
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I could probably use just the 2.0.0.dev0 tag, but that's technically not correct and could cause failures for the unlikely scenario of someone having an a couple of weeks old dev version. So will just go with this.

np.set_printoptions(legacy="1.25")


Expand Down