-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CAS-73] Add dependency checker to GHA unit tests (#88)
* Add dependency checker to GHA unit tests * Bump setuptools * Bump more libraries
- Loading branch information
Showing
3 changed files
with
16 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,6 +41,19 @@ runs: | |
run: tox -e docs | ||
shell: bash | ||
|
||
- name: Run pip-audit command through GHA | ||
# Check dependencies for security vulnerabilities. | ||
# Only run on a single python version (the one that does doc builds) | ||
if: ${{ env.DO_DOC_BUILD == 'true' }} | ||
uses: pypa/[email protected] | ||
with: | ||
inputs: | | ||
requirements/base.txt | ||
requirements/dev.txt | ||
requirements/docs.txt | ||
requirements/test.txt | ||
requirements/vis.txt | ||
- name: Run unit tests | ||
# Run tox using the version of Python in `PATH` | ||
run: tox -e unit | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Pillow~=9.5 | ||
Pillow>=10.3.0 | ||
Sphinx~=7.4 | ||
sphinx_gallery~=0.14 | ||
sphinx_rtd_theme~=2.0 | ||
|