Skip to content

Commit

Permalink
Revert "Use python version 3.9 due to issues with pandas on 3.10 micr…
Browse files Browse the repository at this point in the history
…osoft#17760 (microsoft#17761)"

This reverts commit be58719.
  • Loading branch information
karthiknadig committed Nov 15, 2021
1 parent f10e6a2 commit 7e95850
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/actions/smoke-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ runs:
- name: Install Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
python-version: '3.x'

- name: Pip cache
uses: actions/cache@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
# entry to lower the number of runners used, macOS runners are expensive,
# and we assume that Ubuntu is enough to cover the UNIX case.
os: [ubuntu-latest, windows-latest]
python: ['2.7', '3.9']
python: ['2.7', '3.x']
test-suite: [ts-unit, python-unit, venv, single-workspace, multi-workspace, debugger, functional]
steps:
- name: Checkout
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,13 @@ jobs:
- name: Install test requirements
run: python -m pip install --upgrade -r build/test-requirements.txt

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

- name: Install debugpy (python 2.7)
run: |
Expand Down

0 comments on commit 7e95850

Please sign in to comment.