1
0
mirror of https://github.com/lutris/lutris synced 2024-07-05 16:38:42 +00:00

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
strategy:
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 }}
steps:
- uses: actions/checkout@v2

View File

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

View File

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