Skip to content
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

pip prod(deps): update mizani requirement from <0.10.0 to <0.11.0 #302

Merged
merged 1 commit into from
Aug 29, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 21, 2023

Updates the requirements on mizani to permit the latest version.

Release notes

Sourced from mizani's releases.

v0.10.0

2023-07-28

API Changes

  • mpl_format has been removed, number_format takes its place.

  • mpl_breaks has been removed, extended_breaks has always been the default and it is sufficient.

  • matplotlib has been removed as a dependency of mizani.

  • mizani now requires python 3.9 and above.

  • The units parameter for of timedelta_format now accepts the values "min", "day", "week", "month", instead of "m", "d", "w", "M".

  • The naming convention for break formatting methods has changed from format to label. Specifically these methods have been renamed.

    • comma_format is now label_comma
    • custom_format is now label_custom
    • currency_format is now label_currency
    • label_dollar is now label_dollar
    • percent_format is now label_percent
    • scientific_format is now label_scientific
    • date_format is now label_date
    • number_format is now label_number
    • log_format is now label_log
    • timedelta_format is now label_timedelta
    • pvalue_format is now label_pvalue
    • ordinal_format is now label_ordinal
    • number_bytes_format is now label_bytes
  • The naming convention for break calculating methods has changed from breaks to breaks. Specifically these methods have been renamed.

  • log_breaks is now breaks_log

  • trans_minor_breaks is now minor_breaks_trans

  • date_breaks is now breaks_date

  • timedelta_breaks is now breaks_timedelta

  • extended_breaks is now breaks_extended

  • dataspace_is_numerical has changed to domain_is_numerical and it is now determined dynamically.

  • The default minor_breaks for all transforms that are not linear are now calculated in dataspace. But only if the dataspace is numerical.

New

Changelog

Sourced from mizani's changelog.

v0.10.0

2023-07-28

.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.8193394.svg :target: https://doi.org/10.5281/zenodo.8193394

API Changes


  • :class:~mizani.formatters.mpl_format has been removed, :class:~mizani.formatters.number_format takes its place.

  • :class:~mizani.breaks.mpl_breaks has been removed, :class:~mizani.breaks.extended_breaks has always been the default and it is sufficient.

  • matplotlib has been removed as a dependency of mizani.

  • mizani now requires python 3.9 and above.

  • The units parameter for of :class:~mizani.formatters.timedelta_format now accepts the values "min", "day", "week", "month", instead of "m", "d", "w", "M".

  • The naming convention for break formatting methods has changed from *_format to label_*. Specifically these methods have been renamed.

    • comma_format is now :class:~mizani.formatters.label_comma
    • custom_format is now :class:~mizani.formatters.label_custom
    • currency_format is now :class:~mizani.formatters.label_currency
    • label_dollar is now :class:~mizani.formatters.label_dollar
    • percent_format is now :class:~mizani.formatters.label_percent
    • scientific_format is now :class:~mizani.formatters.label_scientific
    • date_format is now :class:~mizani.formatters.label_date
    • number_format is now :class:~mizani.formatters.label_number
    • log_format is now :class:~mizani.formatters.label_log
    • timedelta_format is now :class:~mizani.formatters.label_timedelta
    • pvalue_format is now :class:~mizani.formatters.label_pvalue
    • ordinal_format is now :class:~mizani.formatters.label_ordinal
    • number_bytes_format is now :class:~mizani.formatters.label_bytes
  • The naming convention for break calculating methods has changed from *_breaks to breaks_*. Specifically these methods have been renamed.

    • log_breaks is now :class:~mizani.breaks.breaks_log
    • trans_minor_breaks is now :class:~mizani.breaks.minor_breaks_trans
    • date_breaks is now :class:~mizani.breaks. breaks_date
    • timedelta_breaks is now :class:~mizani.breaks. breaks_timedelta
    • extended_breaks is now :class:~mizani.breaks. breaks_extended

... (truncated)

Commits
  • 908da66 Update changelog for release
  • dd7d820 MAINT: python-version for check-semver-tag job
  • 2dfb661 MAINT: Fix GHA release job url in release template
  • 31185e0 Remove unreachable check for numerical domain
  • 458496a TYP: Remove some unused type aliases
  • 748d757 Add symmetric log transformation
  • 841c79b Do minor_breaks for non-linear trans in dataspace
  • 7c93eb1 Add TransformProperties
  • c58254a TYP: Refactor types
  • 7a289d2 API: Rename breaks to breaks
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Aug 21, 2023
@zktuong
Copy link
Owner

zktuong commented Aug 29, 2023

@dependabot recreate

Updates the requirements on [mizani](https://github.com/has2k1/mizani) to permit the latest version.
- [Release notes](https://github.com/has2k1/mizani/releases)
- [Changelog](https://github.com/has2k1/mizani/blob/main/doc/changelog.rst)
- [Commits](has2k1/mizani@v0.1.0...v0.10.0)

---
updated-dependencies:
- dependency-name: mizani
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/pip/mizani-lt-0.11.0 branch from 7274f59 to eb5ed51 Compare August 29, 2023 09:25
@zktuong zktuong merged commit ebe2d6f into master Aug 29, 2023
8 checks passed
@dependabot dependabot bot deleted the dependabot/pip/mizani-lt-0.11.0 branch August 29, 2023 09:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant