-
Notifications
You must be signed in to change notification settings - Fork 100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Develop #339
Merged
Merged
Develop #339
Conversation
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
Owner
guillermo-navas-palencia
commented
Oct 28, 2024
- Axis labels are cut off when saving the table plot to file Axis labels are cut off when saving the table plot to a file #303
- Packaging improvements Packaging improvements #335
- Legend missing in ScorecardMonitoring.psi_plot() Legend missing in ScorecardMonitoring.psi_plot() #327
…lt.savefig ``` plt.savefig(savefig, **save_kwargs) ```
…a bad practice. Changing to save_kwargs=None
Issue 303 allow kwargs for savefig
Has been deprecated for 5+ years and has been removed in recent setuptools versions. See pypa/setuptools#4519
Remove `tests_require`, it is essentially deprecated and wasn't used. See pypa/setuptools#931, it's likely to be removed soon.
Packaging improvements
FutureWarning: The provided callable is currently using SeriesGroupBy.min. In a future version of pandas, the provided callable will be used directly. To keep current behavior pass the string "min" instead.
Fix auto-casting scalars to arrays for the folloing deprecation warning. DeprecationWarning: Conversion of an array with ndim > 0 to a scalar is deprecated, and will error in future. Ensure you extract a single element from your array before performing this operation. (Deprecated NumPy 1.25.)
Address future warning by casting to pd.Series first. FutureWarning: pandas.value_counts is deprecated and will be removed in a future version. Use pd.Series(obj).value_counts() instead.
Resolve the deprecation warnings MatplotlibDeprecationWarning: Passing label as a length n sequence when plotting a single dataset is deprecated in Matplotlib 3.9 and will error in 3.11. To keep the current behavior, cast the sequence to string before passing. See https://matplotlib.org/stable/api/prev_api_changes/api_changes_3.9.0.html#legend-labels-for-plot
cvxpy no longer includes ecos by default. Users needing this functionality will have to install the extra. See https://www.cvxpy.org/updates/index.html#ecos-deprecation
Do not mark 3.7 and 3.8 as explicitly supported in the classifiers. The package is still installable on python 3.7 plus but may experience dependency issues as current versions of some dependencies are not functional on these versions
Allow numpy 2.0+ and fix deprecation warnings
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.