Add PyPy support.

This commit is contained in:
Patrick Lehmann
2022-10-25 22:54:28 +02:00
committed by GitHub
2 changed files with 13 additions and 7 deletions

View File

@@ -33,7 +33,7 @@ on:
python_version_list: python_version_list:
description: 'Space separated list of Python versions to run tests with.' description: 'Space separated list of Python versions to run tests with.'
required: false required: false
default: '3.7 3.8 3.9 3.10' default: '3.7 3.8 3.9 3.10 pypy-3.7 pypy-3.8 pypy-3.9'
type: string type: string
system_list: system_list:
description: 'Space separated list of systems to run tests on.' description: 'Space separated list of systems to run tests on.'
@@ -94,6 +94,9 @@ jobs:
'3.9': { 'icon': '🟡', 'until': '2025.10' }, '3.9': { 'icon': '🟡', 'until': '2025.10' },
'3.10': { 'icon': '🟢', 'until': '2026.10' }, '3.10': { 'icon': '🟢', 'until': '2026.10' },
'3.11': { 'icon': '🟣', 'until': '2027.10' }, '3.11': { 'icon': '🟣', 'until': '2027.10' },
'pypy-3.7': { 'icon': '⟲🔴', 'until': '??' },
'pypy-3.8': { 'icon': '⟲🟠', 'until': '??' },
'pypy-3.9': { 'icon': '⟲🟡', 'until': '??' },
}, },
'sys': { 'sys': {
'ubuntu': { 'icon': '🐧', 'runs-on': 'ubuntu-latest', 'shell': 'bash' }, 'ubuntu': { 'icon': '🐧', 'runs-on': 'ubuntu-latest', 'shell': 'bash' },

3
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"files.trimTrailingWhitespace": false,
}