diff --git a/.github/actions/pkg-install/action.yml b/.github/actions/pkg-install/action.yml index 782b66ba..e9c87012 100644 --- a/.github/actions/pkg-install/action.yml +++ b/.github/actions/pkg-install/action.yml @@ -32,7 +32,7 @@ runs: working-directory: pypi/ run: | # TODO: reset env / conside add as conda - pip install *.whl ${{ inputs.install-flags }} + pip install *.whl ${{ inputs.pip-flags }} python -c "import ${{ inputs.import-name }} as pkg; print(f'version: {pkg.__version__}')" pip list shell: bash @@ -47,7 +47,7 @@ runs: working-directory: pypi/ run: | # TODO: reset env / conside add as conda - pip install *.tar.gz ${{ inputs.install-flags }} + pip install *.tar.gz ${{ inputs.pip-flags }} python -c "import ${{ inputs.import-name }} as pkg; print(f'version: {pkg.__version__}')" pip list shell: bash diff --git a/CHANGELOG.md b/CHANGELOG.md index 771a3b15..d6352cd8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added workflow for checking markdown links ([#81](https://github.com/Lightning-AI/utilities/pull/81)) +### Fixed + +- CI: fix passing install flags in package check ([#137](https://github.com/Lightning-AI/utilities/pull/137)) + + ## [0.7.1] - 2023-02-23 ### Added