From a58f28f9c65b84ac7cac2323443c8671f4911958 Mon Sep 17 00:00:00 2001 From: Mahesh Vashishtha Date: Tue, 24 May 2022 01:57:40 -0500 Subject: [PATCH] DOCS-#4487: Recommend GitHub issues over feature_requests@modin.org. (#4489) Signed-off-by: mvashishtha --- docs/release_notes/release_notes-0.15.0.rst | 1 + docs/supported_apis/defaulting_to_pandas.rst | 4 ++-- modin/error_message.py | 5 +++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/release_notes/release_notes-0.15.0.rst b/docs/release_notes/release_notes-0.15.0.rst index 67d4718a2d4..3cf24fb1f25 100644 --- a/docs/release_notes/release_notes-0.15.0.rst +++ b/docs/release_notes/release_notes-0.15.0.rst @@ -45,6 +45,7 @@ Key Features and Updates * DOCS-#4296: Fix docs warnings (#4297) * DOCS-#4388: Turn off fail_on_warning option for docs build (#4389) * DOCS-#4469: Say that commit messages can start with PERF (#4470). + * DOCS-#4487: Recommend GitHub issues over feature_requests@modin.org (#4489). * Dependencies * FIX-#4327: Update min pin for xgboost version (#4328) * FIX-#4383: Remove `pathlib` from deps (#4384) diff --git a/docs/supported_apis/defaulting_to_pandas.rst b/docs/supported_apis/defaulting_to_pandas.rst index 9ff2481bd86..a19e77ae292 100644 --- a/docs/supported_apis/defaulting_to_pandas.rst +++ b/docs/supported_apis/defaulting_to_pandas.rst @@ -27,7 +27,7 @@ We have taken a community-driven approach to implementing new methods. We did a on pandas usage`_ to learn what the most-used APIs are. Modin currently supports **93%** of the pandas API based on our study of pandas usage, and we are actively expanding the API. -**To request implementation, send an email to feature_requests@modin.org or file an issue at -https://github.com/modin-project/modin/issues.** +**To request implementation, file an issue at https://github.com/modin-project/modin/issues +or send an email to feature_requests@modin.org.** .. _`study on pandas usage`: https://github.com/modin-project/study_kaggle_usage diff --git a/modin/error_message.py b/modin/error_message.py index 20f6acaa627..42ae2f82795 100644 --- a/modin/error_message.py +++ b/modin/error_message.py @@ -25,8 +25,9 @@ def not_implemented(cls, message=""): message = "This functionality is not yet available in Modin." raise NotImplementedError( f"{message}\n" - + "To request implementation, send an email to " - + "feature_requests@modin.org" + + "To request implementation, file an issue at " + + "https://github.com/modin-project/modin/issues or, if that's " + + "not possible, send an email to feature_requests@modin.org." ) @classmethod