Skip to content

Commit 4a69571

Browse files
revert to 3.6
1 parent 4fa43cb commit 4a69571

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/actions/build-vsix/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ runs:
1515
node-version: ${{ inputs.node_version }}
1616
cache: 'npm'
1717

18-
# Minimum supported version is Python 3.7
19-
- name: Use Python 3.7
18+
# Minimum supported version is Python 3.6
19+
- name: Use Python 3.6
2020
uses: actions/setup-python@v4
2121
with:
22-
python-version: 3.7
22+
python-version: 3.6
2323

2424
- name: Pip cache
2525
uses: actions/cache@v3

.github/actions/lint/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ runs:
3030
- name: Install Python
3131
uses: actions/setup-python@v4
3232
with:
33-
python-version: '3.7'
33+
python-version: '3.6'
3434

3535
- name: Pip cache
3636
uses: actions/cache@v3

.github/workflows/pr-check.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,18 +45,18 @@ jobs:
4545
fail-fast: false
4646
matrix:
4747
os: [ubuntu-latest, windows-latest]
48-
python: ['3.7']
48+
python: ['3.6']
4949

5050
steps:
5151
- name: Checkout
5252
uses: actions/checkout@v3
5353
with:
5454
path: ${{ env.special-working-directory-relative }}
5555

56-
- name: Use Python 3.7
56+
- name: Use Python 3.6
5757
uses: actions/setup-python@v3
5858
with:
59-
python-version: '3.7'
59+
python-version: '3.6'
6060

6161
- name: Update pip, install pipx and install wheel
6262
run: python -m pip install -U pip pipx wheel
@@ -77,7 +77,7 @@ jobs:
7777
- name: Install dependencies (npm ci)
7878
run: npm ci
7979

80-
# Now that the bundle is installed to target using python 3.7
80+
# Now that the bundle is installed to target using python 3.6
8181
# switch back the python we want to test with
8282
- name: Use Python ${{ matrix.python }}
8383
uses: actions/setup-python@v3

.github/workflows/push-check.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,18 +50,18 @@ jobs:
5050
fail-fast: false
5151
matrix:
5252
os: [ubuntu-latest, windows-latest]
53-
python: ['3.7']
53+
python: ['6']
5454

5555
steps:
5656
- name: Checkout
5757
uses: actions/checkout@v3
5858
with:
5959
path: ${{ env.special-working-directory-relative }}
6060

61-
- name: Use Python 3.7
61+
- name: Use Python 3.6
6262
uses: actions/setup-python@v3
6363
with:
64-
python-version: '3.7'
64+
python-version: '3.6'
6565

6666
- name: Update pip, install pipx and install wheel
6767
run: python -m pip install -U pip pipx wheel
@@ -82,7 +82,7 @@ jobs:
8282
- name: Install dependencies (npm ci)
8383
run: npm ci
8484

85-
# Now that the bundle is installed to target using python 3.7
85+
# Now that the bundle is installed to target using python 3.6
8686
# switch back the python we want to test with
8787
- name: Use Python ${{ matrix.python }}
8888
uses: actions/setup-python@v3

0 commit comments

Comments
 (0)