treewide: make v3.8 the minimum supported Python

Upstream Zephyr has moved to python v3.8 as a minimum version, so it's
OK for west to move too. Make that happen.

Signed-off-by: Martí Bolívar <marti.bolivar@nordicsemi.no>
This commit is contained in:
Martí Bolívar 2022-08-29 09:49:29 -07:00 committed by Marti Bolivar
parent b0b5cefb96
commit 3d3fbf3f70
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.7, 3.8, 3.9]
python-version: [3.8, 3.9, '3.10']
steps:
- uses: actions/checkout@v1
- name: Set up Python

View File

@ -47,6 +47,6 @@ setuptools.setup(
'setuptools',
'packaging',
],
python_requires='>=3.6',
python_requires='>=3.8',
entry_points={'console_scripts': ('west = west.app.main:main',)},
)