Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit c4e89fa

Browse filesBrowse files
author
James
authored
Improve readme for 3.x and 3.11-dev style python-version (actions#441)
1 parent 0ad0f6a commit c4e89fa
Copy full SHA for c4e89fa

File tree

Expand file treeCollapse file tree

1 file changed

+20
-0
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+20
-0
lines changed

‎README.md

Copy file name to clipboardExpand all lines: README.md
+20Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,26 @@ steps:
127127
- run: python my_script.py
128128
```
129129
130+
Download and set up the latest patch version of Python (for specified major & minor versions):
131+
```yaml
132+
steps:
133+
- uses: actions/checkout@v3
134+
- uses: actions/setup-python@v4
135+
with:
136+
python-version: '3.11-dev'
137+
- run: python my_script.py
138+
```
139+
140+
Download and set up the latest stable version of Python (for specified major version):
141+
```yaml
142+
steps:
143+
- uses: actions/checkout@v3
144+
- uses: actions/setup-python@v4
145+
with:
146+
python-version: '3.x'
147+
- run: python my_script.py
148+
```
149+
130150
Download and set up PyPy:
131151
132152
```yaml

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.