Skip to content

Commit

Permalink
Added pipdeptree to test workflow
Browse files Browse the repository at this point in the history
Details:

* Test: Added a step to the test workflow for displaying the tree of all
  package dependencies using pipdeptree. (issue #175)

Signed-off-by: Andreas Maier <andreas.r.maier@gmx.de>
  • Loading branch information
andy-maier committed May 5, 2024
1 parent e332117 commit ba728a6
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Expand Up @@ -194,6 +194,10 @@ jobs:
run: |
echo "Installed Python packages:"
pip list
- name: Show package dependency tree
run: |
echo "Package dependency tree of installed Python packages:"
python -m pipdeptree --all
- name: Run build
env:
PACKAGE_LEVEL: ${{ matrix.package_level }}
Expand Down
3 changes: 3 additions & 0 deletions dev-requirements.txt
Expand Up @@ -116,6 +116,9 @@ readme-renderer>=23.0
# safety 2.3.5 started pinning packaging to <22.0 and requires >=21.0
packaging>=21.0,<22.0

# Package dependency management tools
pipdeptree>=2.2.0


# Indirect dependencies with special constraints:

Expand Down
3 changes: 3 additions & 0 deletions docs/changes.rst
Expand Up @@ -54,6 +54,9 @@ Released: not yet
the description of how to release a version in the development
documentation. (issue #173)

* Test: Added a step to the test workflow for displaying the tree of all
package dependencies using pipdeptree. (issue #175)

**Cleanup:**

* Dev: Removed description of stable branches in development.rst because this
Expand Down
3 changes: 3 additions & 0 deletions minimum-constraints.txt
Expand Up @@ -129,6 +129,9 @@ entrypoints==0.3.0
twine==3.0.0
readme-renderer==23.0

# Package dependency management tools
pipdeptree==2.2.0


# Indirect dependencies with special constraints:

Expand Down

0 comments on commit ba728a6

Please sign in to comment.