修改为东南天坐标系

This commit is contained in:
2026-01-20 09:49:52 +08:00
parent 9538757047
commit 333fad40ac
7201 changed files with 1030888 additions and 85410 deletions

View File

@@ -415,7 +415,10 @@ def test_api_importable():
warnings.filterwarnings('always', category=ImportWarning)
for module_name in PRIVATE_BUT_PRESENT_MODULES:
if not check_importable(module_name):
module_names.append(module_name)
# Nasty hack to avoid new FreeBSD failures. This
# is only needed for NumPy 2.4.x, so go with it
if not module_name == 'numpy.distutils.msvccompiler':
module_names.append(module_name)
if module_names:
raise AssertionError("Modules that are not really public but looked "