You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
10
11
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.
12
13
13
14
## Quick Start
14
15
@@ -22,7 +23,7 @@ Uses path `requirements.txt` and updates `pip`, `setuptools`, and `wheel` before
22
23
steps:
23
24
# this Action should follow steps to set up Python build environment
24
25
- name: Install Python dependencies
25
-
uses: py-actions/py-dependency-install@v3
26
+
uses: py-actions/py-dependency-install@v4
26
27
```
27
28
28
29
### Define the `requirements.txt` path
@@ -33,7 +34,7 @@ Define a requirements.txt file on a path relative to the root of your repository
33
34
steps:
34
35
# this Action should follow steps to set up Python build environment
35
36
- name: Install Python dependencies
36
-
uses: py-actions/py-dependency-install@v3
37
+
uses: py-actions/py-dependency-install@v4
37
38
with:
38
39
path: "path/to/requirements.txt"
39
40
```
@@ -46,7 +47,7 @@ The `pip`, `setuptools`, and `wheel` install/updates can be toggled off in your
46
47
steps:
47
48
# this Action should follow steps to set up Python build environment
0 commit comments