Skip to content

Commit 9c419aa

Browse files
committed
[README.md] updates for v4.0.0
1 parent 845eb6b commit 9c419aa

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@
55
[![macOS CI](https://github.com/py-actions/py-dependency-install/workflows/macOS%20CI/badge.svg)](https://github.com/py-actions/py-dependency-install/actions?query=workflow%3A%22macOS+CI%22)
66
[![Windows CI](https://github.com/py-actions/py-dependency-install/workflows/Windows%20CI/badge.svg)](https://github.com/py-actions/py-dependency-install/actions?query=workflow%3A%22Windows+CI%22)
77
[![Lint](https://github.com/py-actions/py-dependency-install/workflows/Lint/badge.svg)](https://github.com/py-actions/py-dependency-install/actions?query=workflow%3ALint)
8+
[![CodeQL](https://github.com/py-actions/py-dependency-install/actions/workflows/codeql.yml/badge.svg)](https://github.com/py-actions/py-dependency-install/actions/workflows/codeql.yml)
89

910
This GitHub Action installs Python package dependencies from a user-defined `requirements.txt` file path with `pip`, `setuptools`, and `wheel` installs/updates during execution. A Python package environment report is displayed at the end of Action execution.
1011

11-
This Action is tested nightly with cPython v3.7.x - v3.10.x in the latest Linux, macOS, and Windows GitHub Actions runner environments.
12+
This Action is tested nightly with cPython v3.8.x - v3.11.x in the latest Linux, macOS, and Windows GitHub Actions runner environments.
1213

1314
## Quick Start
1415

@@ -22,7 +23,7 @@ Uses path `requirements.txt` and updates `pip`, `setuptools`, and `wheel` before
2223
steps:
2324
# this Action should follow steps to set up Python build environment
2425
- name: Install Python dependencies
25-
uses: py-actions/py-dependency-install@v3
26+
uses: py-actions/py-dependency-install@v4
2627
```
2728
2829
### Define the `requirements.txt` path
@@ -33,7 +34,7 @@ Define a requirements.txt file on a path relative to the root of your repository
3334
steps:
3435
# this Action should follow steps to set up Python build environment
3536
- name: Install Python dependencies
36-
uses: py-actions/py-dependency-install@v3
37+
uses: py-actions/py-dependency-install@v4
3738
with:
3839
path: "path/to/requirements.txt"
3940
```
@@ -46,7 +47,7 @@ The `pip`, `setuptools`, and `wheel` install/updates can be toggled off in your
4647
steps:
4748
# this Action should follow steps to set up Python build environment
4849
- name: Install Python dependencies
49-
uses: py-actions/py-dependency-install@v3
50+
uses: py-actions/py-dependency-install@v4
5051
with:
5152
update-pip: "false"
5253
update-setuptools: "false"

0 commit comments

Comments
 (0)