You've already forked setup-python
							
							
				mirror of
				https://github.com/actions/setup-python.git
				synced 2025-10-30 22:57:59 +07:00 
			
		
		
		
	Use quotes around Python versions in README (#175)
This commit is contained in:
		
							
								
								
									
										14
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										14
									
								
								README.md
									
									
									
									
									
								
							| @ -61,12 +61,12 @@ jobs: | ||||
|     strategy: | ||||
|       matrix: | ||||
|         os: [ubuntu-latest, macos-latest, windows-latest] | ||||
|         python-version: [2.7, 3.6, 3.7, 3.8, pypy-2.7, pypy-3.6] | ||||
|         python-version: ['2.7', '3.6', '3.7', '3.8', 'pypy-2.7', 'pypy-3.6'] | ||||
|         exclude: | ||||
|           - os: macos-latest | ||||
|             python-version: 3.8 | ||||
|             python-version: '3.8' | ||||
|           - os: windows-latest | ||||
|             python-version: 3.6 | ||||
|             python-version: '3.6' | ||||
|     steps: | ||||
|       - uses: actions/checkout@v2 | ||||
|       - name: Set up Python | ||||
| @ -85,7 +85,7 @@ jobs: | ||||
|     strategy: | ||||
|       matrix: | ||||
|         # in this example, there is a newer version already installed, 3.7.7, so the older version will be downloaded | ||||
|         python-version: [3.5, 3.6, 3.7.4, 3.8] | ||||
|         python-version: ['3.5', '3.6', '3.7.4', '3.8'] | ||||
|     steps: | ||||
|     - uses: actions/checkout@v2 | ||||
|     - uses: actions/setup-python@v2 | ||||
| @ -123,9 +123,9 @@ jobs: | ||||
|     strategy: | ||||
|       matrix: | ||||
|         python-version: | ||||
|         - pypy-3.6 # the latest available version of PyPy that supports Python 3.6 | ||||
|         - pypy-3.7 # the latest available version of PyPy that supports Python 3.7 | ||||
|         - pypy-3.7-v7.3.3 # Python 3.7 and PyPy 7.3.3 | ||||
|         - 'pypy-3.6' # the latest available version of PyPy that supports Python 3.6 | ||||
|         - 'pypy-3.7' # the latest available version of PyPy that supports Python 3.7 | ||||
|         - 'pypy-3.7-v7.3.3' # Python 3.7 and PyPy 7.3.3 | ||||
|     steps: | ||||
|     - uses: actions/checkout@v2 | ||||
|     - uses: actions/setup-python@v2 | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 Adam J. Stewart
					Adam J. Stewart