Skip to content

Commit cd15c76

Browse files
committed
Use python version 3.9 due to issues with pandas on 3.10 microsoft#17760
1 parent 4872361 commit cd15c76

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/actions/smoke-tests/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ runs:
2121
- name: Install Python
2222
uses: actions/setup-python@v2
2323
with:
24-
python-version: '3.x'
24+
python-version: '3.9'
2525

2626
- name: Pip cache
2727
uses: actions/cache@v2

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
# entry to lower the number of runners used, macOS runners are expensive,
8686
# and we assume that Ubuntu is enough to cover the UNIX case.
8787
os: [ubuntu-latest, windows-latest]
88-
python: ['2.7', '3.x']
88+
python: ['2.7', '3.9']
8989
test-suite: [ts-unit, python-unit, venv, single-workspace, multi-workspace, debugger, functional]
9090
steps:
9191
- name: Checkout

.github/workflows/pr-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,13 +105,13 @@ jobs:
105105
- name: Install test requirements
106106
run: python -m pip install --upgrade -r build/test-requirements.txt
107107

108-
- name: Install debugpy wheels (python 3.8)
108+
- name: Install debugpy wheels (python 3.9)
109109
run: |
110110
python -m pip install wheel
111111
python -m pip --disable-pip-version-check install -r build/debugger-install-requirements.txt
112112
python ./pythonFiles/install_debugpy.py
113113
shell: bash
114-
if: matrix.test-suite == 'debugger' && matrix.python == 3.8
114+
if: matrix.test-suite == 'debugger' && matrix.python == 3.9
115115

116116
- name: Install debugpy (python 2.7)
117117
run: |

0 commit comments

Comments
 (0)