pyodide/packages/scipy/patches/0009-Rename-_page_trend_tes...

34 lines
1.3 KiB
Diff
Raw Normal View History

From aa5efca2d530f6b8be78151a5873595514b75bf3 Mon Sep 17 00:00:00 2001
2022-01-03 22:07:13 +00:00
From: Hood Chatham <roberthoodchatham@gmail.com>
Date: Sun, 26 Dec 2021 07:34:40 -0800
2022-04-09 01:43:30 +00:00
Subject: [PATCH 09/14] Rename _page_trend_test.py to prevent test unvendoring
2022-01-03 22:07:13 +00:00
2022-04-09 01:43:30 +00:00
unvendor_tests will unvendor any file that ends in _test.py.
2022-01-03 22:07:13 +00:00
Prevent that by changing the name of this file.
---
scipy/stats/__init__.py | 2 +-
scipy/stats/{_page_trend_test.py => _page_trend_test_.py} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
rename scipy/stats/{_page_trend_test.py => _page_trend_test_.py} (100%)
diff --git a/scipy/stats/__init__.py b/scipy/stats/__init__.py
2022-04-09 01:43:30 +00:00
index f416e1a4f..2268caa3e 100644
2022-01-03 22:07:13 +00:00
--- a/scipy/stats/__init__.py
+++ b/scipy/stats/__init__.py
2022-04-09 01:43:30 +00:00
@@ -466,7 +466,7 @@ from ._bootstrap import bootstrap, BootstrapDegenerateDistributionWarning
2022-01-03 22:07:13 +00:00
from ._entropy import *
from ._hypotests import *
2022-04-09 01:43:30 +00:00
from ._rvs_sampling import rvs_ratio_uniforms, NumericalInverseHermite # noqa
2022-01-03 22:07:13 +00:00
-from ._page_trend_test import page_trend_test
+from ._page_trend_test_ import page_trend_test
from ._mannwhitneyu import mannwhitneyu
2022-04-09 01:43:30 +00:00
# Deprecated namespaces, to be removed in v2.0.0
2022-01-03 22:07:13 +00:00
diff --git a/scipy/stats/_page_trend_test.py b/scipy/stats/_page_trend_test_.py
similarity index 100%
rename from scipy/stats/_page_trend_test.py
rename to scipy/stats/_page_trend_test_.py
--
2.25.1