Skip to content

Commit

Permalink
Merge #2 (remove Python 3.7 dependency).
Browse files Browse the repository at this point in the history
  • Loading branch information
martey committed Dec 25, 2021
2 parents 13acfa4 + 081cb63 commit c35659d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.3.0

- Remove explicit dependency on Python 3.7.

## v0.2.0

- Allow customization of virtualenv and requirement file locations (#1).
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ runs:
- name: Create Python virtualenv
run: |
mkdir -p ${{ inputs.virtualenv-location }}
python3.7 -m venv ${{ inputs.virtualenv-location }};
python3 -m venv ${{ inputs.virtualenv-location }};
shell: bash
- name: Install requirements
run: ${{ inputs.virtualenv-location }}/bin/pip install -r ${{ inputs.requirements-file }}
Expand Down

0 comments on commit c35659d

Please sign in to comment.