materialsproject / jobflow

jobflow is a library for writing computational workflows.
https://materialsproject.github.io/jobflow
Other
90 stars 25 forks source link

Bump pydot from 1.4.2 to 2.0.0 #521

Closed dependabot[bot] closed 6 months ago

dependabot[bot] commented 6 months ago

Bumps pydot from 1.4.2 to 2.0.0.

Changelog

Sourced from pydot's changelog.

2.0.0 (2023-12-30)

Changed:

  • Broken parsing caused by pyparsing updates fixed. (#296) With this, the pydot project rises from the dead.

  • (Internal) CI revived by @​ferdnyc. (#302) Modernized and clarified the development process. Testing is done against multiple Python versions.

  • Reorganized package/module structure. (#230) The pydot package is installed as a directory now instead of as two modules:

    Before (pydot 0.x, 1.x)    After (pydot 2.x)
    

    site-packages/ site-packages/ |-- pydot.py -- pydot/ -- dot_parser.py |-- init.py |-- core.py |-- dot_parser.py `-- exceptions.py

    This is mostly an internal change that should go unnoticed by most users, especially those upgrading through pip or a software distribution. import pydot should work as it did before. Special cases:

    • import dot_parser no longer works. Change it to from pydot import dot_parser or see if you can use the wrappers pydot.graph_from_dot_data() or pydot.graph_from_dot_file().

      USER FEEDBACK REQUESTED We assume pydot users do not often directly import dot_parser. If you do, please report your reasons, so that we can consider making it available again before the final release of pydot 2.0: pydot/pydot#230

    • If you use pydot from a (cloned) pydot source tree:

      • The pydot source modules moved from the top directory to subdirectory src/pydot/.
      • When using a PYTHONPATH environment variable: Append /src, e.g. PYTHONPATH=~/Development/pydot/src. If you need to switch between pydot 1.x and pydot 2.x, add both, e.g. PYTHONPATH=~/Development/pydot/src:~/Development/pydot
      • When using an editable install (development mode): Re-run pip install -e . from the top directory of the source tree to update the links.
    • For users of the test suite:

      • The test suite no longer refuses to run from the top of the source tree.
      • This makes the test suite option --no-check redundant. It has

... (truncated)

Commits
  • 85a756e Preparing release 2.0.0
  • 8e7b8de fix output problems for non-default progs (#276)
  • b450074 Update MANIFEST.in for better sdist contents (#307)
  • e96bf9a Prepare the 2.0.0 release (#305)
  • c2187f1 Do not run tests for README.md, LICENSE, and ChangeLog changes
  • f1355bf Improve test clarity (#304)
  • 23f6105 Remove an unused g variable in pydot_unittest.py (#298)
  • 5efc6cc Update gitignore to contain test.svg and .DS_Store (#297)
  • eabcff2 Fix multiple breaking issues from new pyparsing versions (#296)
  • 803114c Add workflow job to label PRs with conflicts (#303)
  • Additional commits viewable in compare view


Dependabot compatibility score

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 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)
codecov[bot] commented 6 months ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Comparison is base (f5cf247) 99.86% compared to head (63263f1) 99.86%. Report is 4 commits behind head on main.

Additional details and impacted files ```diff @@ Coverage Diff @@ ## main #521 +/- ## ======================================= Coverage 99.86% 99.86% ======================================= Files 20 20 Lines 1512 1512 Branches 415 415 ======================================= Hits 1510 1510 Misses 2 2 ```