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

Update meshio requirement from <5.3.5 to <5.3.6 #156

Merged
merged 1 commit into from
Feb 1, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 1, 2024

Updates the requirements on meshio to permit the latest version.

Changelog

Sourced from meshio's changelog.

Changelog

This document only describes breaking changes in meshio. If you are interested in bug fixes, enhancements etc., best follow the meshio project on GitHub.

v5.1.0 (Dec 11, 2021)

  • CellBlocks are no longer tuples, but classes. You can no longer iterate over them like
    for cell_type, cell_data in cells:
        pass
    Instead, use
    for cell_block in cells:
        cell_block.type
        cell_block.data

v5.0.0 (Aug 06, 2021)

  • meshio now only provides one command-line tool, meshio, with subcommands like info, convert, etc. This replaces the former meshio-info, meshio-convert etc.

v4.4.0 (Apr 29, 2021)

  • Polygons are now stored as "polygon" cell blocks, not "polygonN" (where N is the number of nodes per polygon). One can simply retrieve the number of points via cellblock.data.shape[1].

v4.0.0 (Feb 18, 2020)

  • mesh.cells used to be a dictionary of the form

    {
      "triangle": [[0, 1, 2], [0, 2, 3]],
      "quad": [[0, 7, 1, 10], ...]
    }

    From 4.0.0 on, mesh.cells is a list of tuples,

    [
      ("triangle", [[0, 1, 2], [0, 2, 3]]),
      ("quad", [[0, 7, 1, 10], ...])
    ]

... (truncated)

Commits

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)

Updates the requirements on [meshio](https://github.com/nschloe/meshio) to permit the latest version.
- [Release notes](https://github.com/nschloe/meshio/releases)
- [Changelog](https://github.com/nschloe/meshio/blob/main/CHANGELOG.md)
- [Commits](nschloe/meshio@v0.1.0...v5.3.5)

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

Signed-off-by: dependabot[bot] <[email protected]>
@tkoyama010 tkoyama010 merged commit 1a502d2 into main Feb 1, 2024
8 checks passed
@tkoyama010 tkoyama010 deleted the dependabot/pip/meshio-lt-5.3.6 branch February 1, 2024 04:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant