Skip to content

Commit

Permalink
DOCS-#4487: Recommend GitHub issues over feature_requests@modin.org. (#…
Browse files Browse the repository at this point in the history
…4489)

Signed-off-by: mvashishtha <mahesh@ponder.io>
  • Loading branch information
mvashishtha authored May 24, 2022
1 parent 0f70e82 commit a58f28f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions docs/release_notes/release_notes-0.15.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions docs/supported_apis/defaulting_to_pandas.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
5 changes: 3 additions & 2 deletions modin/error_message.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a58f28f

Please sign in to comment.