Skip to content

Bump peter-evans/create-pull-request from 6.0.4 to 6.0.5 in the github-actions group #608

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

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,6 @@ jobs:
sudo apt-get update
sudo apt-get install graphviz graphviz-dev

- if: matrix.os == 'macos-latest'
run: brew install graphviz

# Unit, integration, and end-to-end tests.

- name: Run unit tests and doctests.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-plugin-list.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
run: python scripts/update_plugin_list.py

- name: Create Pull Request
uses: peter-evans/create-pull-request@9153d834b60caba6d51c9b9510b087acf9f33f83
uses: peter-evans/create-pull-request@6d6857d36972b65feb161a90e484f2984215f83e
with:
commit-message: '[automated] Update plugin list'
author: 'Tobias Raabe <[email protected]>'
Expand Down
2 changes: 1 addition & 1 deletion tests/test_dag_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# Test should run always on remote except on Windows and locally only with the package
# installed.
_TEST_SHOULD_RUN = _IS_PYGRAPHVIZ_INSTALLED or (
os.environ.get("CI") and sys.platform != "win32"
os.environ.get("CI") and sys.platform == "linux"
)
_GRAPH_LAYOUTS = ["neato", "dot", "fdp", "sfdp", "twopi", "circo"]
_TEST_FORMATS = ["dot", "pdf", "png", "jpeg", "svg"]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ commands =
[testenv:test]
extras = test
deps =
pygraphviz;platform_system != "Windows"
pygraphviz;platform_system == "Linux"
commands =
pytest --nbmake {posargs}
Loading