Skip to content

Commit

Permalink
Revert "Use python version 3.9 due to issues with pandas on 3.10 (mic…
Browse files Browse the repository at this point in the history
…rosoft/vscode-python#18026)

* Revert "Use python version 3.9 due to issues with pandas on 3.10 microsoft/vscode-python#17760 (microsoft/vscode-python#17761)"

This reverts commit be5871957ae7ec58690e277257f0b253fa81620f.

* Set python for wheels
  • Loading branch information
karthiknadig authored and wesm committed Mar 28, 2024
1 parent 4f838e0 commit fd97228
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
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
6 changes: 3 additions & 3 deletions extensions/positron-python/.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 Expand Up @@ -125,15 +125,15 @@ jobs:
- name: Install test requirements
run: python -m pip install --upgrade -r build/test-requirements.txt

- name: Install debugpy wheels
- name: Install debugpy wheels (Python 3.x)
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 != 2.7

- name: Install debugpy wheel (Python 2.7)
- name: Install debugpy (Python 2.7)
run: |
python -m pip --disable-pip-version-check install -t ./pythonFiles/lib/python --no-cache-dir --implementation py --no-deps --upgrade --pre debugpy
shell: bash
Expand Down
4 changes: 2 additions & 2 deletions extensions/positron-python/.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.x)
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 != 2.7

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

0 comments on commit fd97228

Please sign in to comment.