Skip to content

Commit

Permalink
ci: fix passing install flags (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
Borda authored Jun 5, 2023
1 parent 07635f2 commit 70bacf2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/pkg-install/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 70bacf2

Please # to comment.