Skip to content

Commit fad4b8b

Browse files
authored
Revert "Use python version 3.9 due to issues with pandas on 3.10 (#18026)
* Revert "Use python version 3.9 due to issues with pandas on 3.10 #17760 (#17761)" This reverts commit be58719. * Set python for wheels
1 parent f10e6a2 commit fad4b8b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
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.9'
24+
python-version: '3.x'
2525

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

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
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.9']
88+
python: ['2.7', '3.x']
8989
test-suite: [ts-unit, python-unit, venv, single-workspace, multi-workspace, debugger, functional]
9090
steps:
9191
- name: Checkout
@@ -125,15 +125,15 @@ jobs:
125125
- name: Install test requirements
126126
run: python -m pip install --upgrade -r build/test-requirements.txt
127127

128-
- name: Install debugpy wheels
128+
- name: Install debugpy wheels (Python 3.x)
129129
run: |
130130
python -m pip install wheel
131131
python -m pip --disable-pip-version-check install -r build/debugger-install-requirements.txt
132132
python ./pythonFiles/install_debugpy.py
133133
shell: bash
134134
if: matrix.test-suite == 'debugger' && matrix.python != 2.7
135135

136-
- name: Install debugpy wheel (Python 2.7)
136+
- name: Install debugpy (Python 2.7)
137137
run: |
138138
python -m pip --disable-pip-version-check install -t ./pythonFiles/lib/python --no-cache-dir --implementation py --no-deps --upgrade --pre debugpy
139139
shell: bash

.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.9)
108+
- name: Install debugpy wheels (python 3.x)
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.9
114+
if: matrix.test-suite == 'debugger' && matrix.python != 2.7
115115

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

0 commit comments

Comments
 (0)