Skip to content
Snippets Groups Projects
Commit 4ef15d4a authored by Philipp Hörist's avatar Philipp Hörist
Browse files

Fix version check

parent 1d2c3d9f
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@
import os
import sys
if sys.version_info[0] < (3, 5):
if sys.version_info < (3, 5):
sys.exit('Gajim needs Python 3.5+')
from setuptools import setup, find_packages
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment