Skip to content

Commit 0edc1b1

Browse files
Merge pull request #112 from py-actions/release-prep-3_0_0
v3.0.0 release prep
2 parents 3a9d099 + c77d804 commit 0edc1b1

File tree

5 files changed

+9972
-2511
lines changed

5 files changed

+9972
-2511
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,25 @@
11
# Changelog
22

3+
## v3.0.0
4+
5+
- add cPython 3.10.x interpreter support
6+
- drop cPython 3.6.x interpreter support
7+
- remove pypy3 interpreter CI tests (appears to be a bug in the actions/setup-python pypy3 install pipeline at the moment)
8+
- update eslint-plugin-import to ^2.25.3
9+
- update eslint-plugin-jsx-a11y to ^6.5.1
10+
- update eslint-plugin-prettier to ^3.4.1
11+
- update eslint-plugin-promise to ^4.3.1
12+
- update eslint-plugin-react to ^7.27.1
13+
- update jest to ^27.4.5
14+
315
## v2.1.0
416

517
- add cPython 3.9 interpreter CI testing
618
- add daily cron schedule CI testing
719
- update @actions/core dependency to v1.2.6
820
- update @zeit/ncc dependency to v0.22.3
921
- update eslint-config-airbnb-base dependency to v14.2.1
10-
- update estlint-plugin-import dependency to v2.22.1
22+
- update eslint-plugin-import dependency to v2.22.1
1123
- update eslint-plugin-jsx-a11y dependency to v6.4.1
1224
- update eslint-plugin-prettier dependency to v3.1.4
1325
- update eslint-plugin-react dependency to v7.21.5

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
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.
1010

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+
1113
## Quick Start
1214

1315
Insert a dependency installation step under the `steps:` field in a GitHub workflow job with a configuration like this:
@@ -20,7 +22,7 @@ Uses path `requirements.txt` and updates `pip`, `setuptools`, and `wheel` before
2022
steps:
2123
# this Action should follow steps to set up Python build environment
2224
- name: Install Python dependencies
23-
uses: py-actions/py-dependency-install@v2
25+
uses: py-actions/py-dependency-install@v3
2426
```
2527
2628
### Define the `requirements.txt` path
@@ -31,7 +33,7 @@ Define a requirements.txt file on a path relative to the root of your repository
3133
steps:
3234
# this Action should follow steps to set up Python build environment
3335
- name: Install Python dependencies
34-
uses: py-actions/py-dependency-install@v2
36+
uses: py-actions/py-dependency-install@v3
3537
with:
3638
path: "path/to/requirements.txt"
3739
```
@@ -44,7 +46,7 @@ The `pip`, `setuptools`, and `wheel` install/updates can be toggled off in your
4446
steps:
4547
# this Action should follow steps to set up Python build environment
4648
- name: Install Python dependencies
47-
uses: py-actions/py-dependency-install@v2
49+
uses: py-actions/py-dependency-install@v3
4850
with:
4951
update-pip: "false"
5052
update-setuptools: "false"

0 commit comments

Comments
 (0)