@@ -11,24 +11,16 @@ jobs:
1111 platform : [ubuntu-22.04, windows-latest]
1212 runs-on : ${{ matrix.platform }}
1313 steps :
14- # Now that python 3.6 and 3.8 are EOL, we should remove them from the test matrix.
15- # Perhaps we no longer need to test python 3.6 and 3.8, it's up to you.
16- # - uses: actions/checkout@v3
17- # - name: Set up Python 3.6 (Windows)
18- # if: matrix.platform == 'windows-latest'
19- # uses: actions/setup-python@v4
20- # with:
21- # python-version: "3.6"
22- # - name: Set up Python 3.6 (Ubuntu)
23- # if: matrix.platform == 'ubuntu-22.04'
24- # run: |
25- # sudo add-apt-repository ppa:deadsnakes/ppa
26- # sudo apt-get update
27- # sudo apt-get install -y python3.6
28- # - name: Set up Python 3.8
29- # uses: actions/setup-python@v4
30- # with:
31- # python-version: "3.8"
14+ - uses : actions/checkout@v3
15+ - name : Set up Python 3.6 (Windows)
16+ if : matrix.platform == 'windows-latest'
17+ uses : actions/setup-python@v4
18+ with :
19+ python-version : " 3.6"
20+ - name : Set up Python 3.8
21+ uses : actions/setup-python@v4
22+ with :
23+ python-version : " 3.8"
3224 - name : Set up Python 3.10
3325 uses : actions/setup-python@v4
3426 with :
0 commit comments