Skip to content

Commit

Permalink
Update python-tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
DJStompZone authored Jun 7, 2024
1 parent 0b4ffb4 commit 73de4a4
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ jobs:
strategy:
matrix:
os: [windows-latest]
python-version: ['3.0.1', '3.1.4', '3.2.5', '3.3.5', '3.5.4', '3.6.8', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13.0-beta.1']
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13.0-beta.1']

runs-on: ${{ matrix.os }}

timeout-minutes: 13

steps:
- uses: actions/checkout@v2

Expand All @@ -22,10 +24,12 @@ jobs:

- name: Install build dependencies
run: python -m pip install --upgrade pip setuptools wheel
shell: powershell

- name: Install local package
run: pip install .
shell: powershell

- name: Test import pyreadline
run: python -c "import pyreadline; print('pyreadline imported successfully')"
shell: bash
run: python -c "import pyreadline; Write-Output 'pyreadline imported successfully'"
shell: powershell

0 comments on commit 73de4a4

Please sign in to comment.