Skip to content

Commit

Permalink
Dynamiccaly search the Python executable used by Poetry
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed Apr 18, 2024
1 parent 2812ccb commit 9dc72cd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ jobs:
# to virtualenv. See: https://github.com/tox-dev/pipdeptree/issues/130#issuecomment-2029280908
- name: Run pipdeptree for debug
run: >

Check failure on line 237 in .github/workflows/docs.yaml

View workflow job for this annotation

GitHub Actions / lint-github-action

shellcheck reported issue in this script: SC2046:warning:1:21: Quote this to prevent word splitting
pipdeptree --python ./.venv/bin/python
pipdeptree --python $( poetry env info --executable )
${{ needs.project-metadata.outputs.package_name
&& format('--packages {0}', needs.project-metadata.outputs.package_name)}}
- name: Create dir structure
Expand All @@ -245,7 +245,7 @@ jobs:
# See: https://github.com/tox-dev/pipdeptree/issues/107
- name: Generate graph
run: >

Check failure on line 247 in .github/workflows/docs.yaml

View workflow job for this annotation

GitHub Actions / lint-github-action

shellcheck reported issue in this script: SC2046:warning:1:21: Quote this to prevent word splitting
pipdeptree --python ./.venv/bin/python
pipdeptree --python $( poetry env info --executable )
${{ needs.project-metadata.outputs.package_name
&& format('--packages {0}', needs.project-metadata.outputs.package_name)}}
--mermaid > ${{ inputs.dependency-graph-output }}
Expand Down
2 changes: 2 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
This version is not released yet and is under active development.
```

- Dynamiccaly search the Python executable used by Poetry.

## [3.4.5 (2024-04-18)](https://github.com/kdeldycke/workflows/compare/v3.4.4...v3.4.5)

- Support dependency graph generation for both package and non-package Poetry projects.
Expand Down

0 comments on commit 9dc72cd

Please sign in to comment.