Raise min Python version to 3.5

This commit is contained in:
Philipp Hörist 2018-03-26 19:42:11 +02:00
parent 4f1ba653e1
commit 1d2c3d9fbc
2 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@
### Runtime Requirements
- python3.4 or higher
- python3.5 or higher
- python3-gi
- python3-gi-cairo
- gir1.2-gtk-3.0 (>=3.22)

View File

@ -3,8 +3,8 @@
import os
import sys
if sys.version_info[0] < 3:
sys.exit('Tried to install with Python 2, gajim only supports Python 3.')
if sys.version_info[0] < (3, 5):
sys.exit('Gajim needs Python 3.5+')
from setuptools import setup, find_packages
from setuptools import Command