-
Notifications
You must be signed in to change notification settings - Fork 358
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change matplotlib as an optional dependency (#2029)
This PR proposes to change matplotlib as an optional dependency. ```python >>> from databricks import koalas as ks >>> ks.range(100).plot.bar() Traceback (most recent call last): ... ImportError: matplotlib is required for plotting when the default backend 'matplotlib' is selected. ``` Resolves #issues
- Loading branch information
1 parent
060fee3
commit 5e28195
Showing
7 changed files
with
7 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,13 +51,13 @@ | |
'spark': ['pyspark>=2.4.0'], | ||
'mlflow': ['mlflow>=1.0'], | ||
'plotly': ['plotly>=4.8'], | ||
'matplotlib': ['matplotlib>=3.0.0,<3.3.0'], | ||
}, | ||
python_requires='>=3.5,<3.9', | ||
install_requires=[ | ||
'pandas>=0.23.2,<1.2.0', | ||
'pyarrow>=0.10', | ||
'numpy>=1.14,<1.20.0', | ||
'matplotlib>=3.0.0,<3.3.0', | ||
], | ||
author="Databricks", | ||
author_email="[email protected]", | ||
|