From 9e42809bc6ad23089c52cc01e716db1d3e4cc8c5 Mon Sep 17 00:00:00 2001 From: DJ Magar <85457381+DJStompZone@users.noreply.github.com> Date: Fri, 7 Jun 2024 00:49:39 -0700 Subject: [PATCH] Update python-tests.yml --- .github/workflows/python-tests.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 6c2e210..2d794e1 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: os: [windows-latest] - python-version: [2.7, 3.6, 3.7, 3.8, 3.9, 3.10, 3.11, 3.12] + python-version: ['3.0.1', '3.1.4', '3.2.5', '3.3.5', '3.5.4', '3.6.15', '3.7.17', '3.8.18', '3.9.19', '3.10.14', '3.11.9', '3.12.3', '3.13.0-beta.1'] runs-on: ${{ matrix.os }} @@ -20,12 +20,12 @@ jobs: with: python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install . + - name: Install build dependencies + run: python -m pip install --upgrade pip setuptools wheel + - name: Install local package + run: pip install . + - name: Test import pyreadline - run: | - python -c "import pyreadline; print('pyreadline imported successfully')" + run: python -c "import pyreadline; print('pyreadline imported successfully')" shell: bash