Skip to content

Commit

Permalink
Fix Python 2.7 deprecation in setup-python action
Browse files Browse the repository at this point in the history
  • Loading branch information
MoojMidge committed Aug 11, 2023
1 parent 0a3c8db commit f039023
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -9,11 +9,11 @@ jobs:
env:
PYTHONIOENCODING: utf-8
PYTHONPATH: ${{ github.workspace }}/resources/lib:${{ github.workspace }}/tests
TESTS_ENABLED: '2.7, 3.8, 3.11'
TESTS_ENABLED: 'pypy2.7, 3.8, 3.11'
strategy:
fail-fast: false
matrix:
python-version: [2.7, 3.7, 3.8, 3.9, '3.10', 3.11]
python-version: [pypy2.7, 3.7, 3.8, 3.9, '3.10', 3.11]
steps:
- name: Check out ${{ github.sha }} from repository ${{ github.repository }}
uses: actions/checkout@v3
Expand Down

0 comments on commit f039023

Please sign in to comment.