Results 10 comments of Zak Kraehling

I like your idea too @davisbra, a command for seeing all available servers seems worthwhile. A command or option to see the set of countries that have available servers is...

Sure no problem. MakeOIS and tests are updated to use t+1 for CORRA

I'm working on a fix for this issue and have identified that in addition to the bounds check you mentioned at line 185, there's a similar issue at line 178...

I'd like to take a crack at this

Edit: use coveralls

@Transurgeon Thanks for the quick review. Would you prefer: 1. Bumping the `numpy` version in `pyproject.toml` to `>=1.26` [Release notes](https://numpy.org/devdocs/release/1.26.0-notes.html) , or 2. Tabling this change for now? Happy to...

@Transurgeon Sounds good, will revisit after 1.7.0 release.

@Transurgeon Rebased onto latest master and bumped the NumPy runtime requirement to >=1.26.0 to support normalize_axis_index. Let me know if you’d like any additional adjustments.

@Transurgeon Would you like to close this to clear out noise or keep it open for further discussion?

To keep compatibility with both 1.26 and 2.x a small compatibility shim could solve this. ```python try: from numpy.lib.array_utils import normalize_axis_index, normalize_axis_tuple # numpy ≥ 2.0 except ModuleNotFoundError: from numpy.core.multiarray...