Remove Python 3.6 support

This commit is contained in:
Mathieu Comandon 2022-03-31 17:10:17 -07:00
parent e991140ca3
commit aac8e986aa
3 changed files with 3 additions and 4 deletions

View file

@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-18.04 runs-on: ubuntu-18.04
strategy: strategy:
matrix: matrix:
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10' ] python-version: [ '3.7', '3.8', '3.9', '3.10' ]
name: Python ${{ matrix.python-version }} name: Python ${{ matrix.python-version }}
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2

View file

@ -1,7 +1,6 @@
dist: bionic dist: bionic
language: python language: python
python: python:
- "3.6"
- "3.7" - "3.7"
- "3.8" - "3.8"
- "3.9" - "3.9"

View file

@ -6,8 +6,8 @@ from setuptools import setup
from lutris import __version__ as VERSION from lutris import __version__ as VERSION
if sys.version_info < (3, 6): if sys.version_info < (3, 7):
sys.exit('Python >= 3.6 is required to run Lutris') sys.exit('Python >= 3.7 is required to run Lutris')
data_files = [] data_files = []