mirror of
				https://git.mirrors.martin98.com/https://github.com/actions/setup-python
				synced 2025-10-31 08:51:06 +08:00 
			
		
		
		
	Change advanced-usage.md
This commit is contained in:
		
							parent
							
								
									fd6f59db22
								
							
						
					
					
						commit
						853c012a3c
					
				| @ -23,7 +23,7 @@ | |||||||
| 
 | 
 | ||||||
| - If there is a specific version of Python that you need and you don't want to worry about any potential breaking changes due to patch updates (going from `3.7.5` to `3.7.6` for example), you should specify the **exact major, minor, and patch version** (such as `3.7.5`): | - If there is a specific version of Python that you need and you don't want to worry about any potential breaking changes due to patch updates (going from `3.7.5` to `3.7.6` for example), you should specify the **exact major, minor, and patch version** (such as `3.7.5`): | ||||||
| 
 | 
 | ||||||
|   ```yaml | ```yaml | ||||||
| steps: | steps: | ||||||
| - uses: actions/checkout@v3 | - uses: actions/checkout@v3 | ||||||
| - uses: actions/setup-python@v4 | - uses: actions/setup-python@v4 | ||||||
| @ -31,12 +31,12 @@ steps: | |||||||
|     python-version: '3.7.5'  |     python-version: '3.7.5'  | ||||||
| - run: python my_script.py | - run: python my_script.py | ||||||
| ``` | ``` | ||||||
|   - The only downside to this is that set-up will take a little longer since the exact version will have to be downloaded if the exact version is not already installed on the runner due to more recent versions. |     - The only downside to this is that set-up will take a little longer since the exact version will have to be downloaded if the exact version is not already installed on the runner due to more recent versions. | ||||||
|   - MSI installers are used on Windows for this, so runs will take a little longer to set up vs MacOS and Linux. |     - MSI installers are used on Windows for this, so runs will take a little longer to set up vs MacOS and Linux. | ||||||
| 
 | 
 | ||||||
| - You can specify **only a major and minor version** if you are okay with the most recent patch version being used: | - You can specify **only a major and minor version** if you are okay with the most recent patch version being used: | ||||||
| 
 | 
 | ||||||
|   ```yaml | ```yaml | ||||||
| steps: | steps: | ||||||
| - uses: actions/checkout@v3 | - uses: actions/checkout@v3 | ||||||
| - uses: actions/setup-python@v4 | - uses: actions/setup-python@v4 | ||||||
| @ -44,9 +44,9 @@ steps: | |||||||
|     python-version: '3.7'  |     python-version: '3.7'  | ||||||
| - run: python my_script.py | - run: python my_script.py | ||||||
| ``` | ``` | ||||||
|   - There will be a single patch version already installed on each runner for every minor version of Python that is supported. |     - There will be a single patch version already installed on each runner for every minor version of Python that is supported. | ||||||
|   - The patch version that will be preinstalled, will generally be the latest and every time there is a new patch released, the older version that is preinstalled will be replaced. |     - The patch version that will be preinstalled, will generally be the latest and every time there is a new patch released, the older version that is preinstalled will be replaced. | ||||||
|   - Using the most recent patch version will result in a very quick setup since no downloads will be required since a locally installed version of Python on the runner will be used. |     - Using the most recent patch version will result in a very quick setup since no downloads will be required since a locally installed version of Python on the runner will be used. | ||||||
| 
 | 
 | ||||||
| - You can specify the version with **prerelease tag** to download and set up an accurate pre-release version of Python: | - You can specify the version with **prerelease tag** to download and set up an accurate pre-release version of Python: | ||||||
| 
 | 
 | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 IvanZosimov
						IvanZosimov