Philipp Hörist pushed to branch master at gajim / gajim

Commits:
4f1ba653 by Philipp Hörist at 2018-03-26T19:41:41+02:00
Raise min GTK version to 3.22

- - - - -
1d2c3d9f by Philipp Hörist at 2018-03-26T19:46:25+02:00
Raise min Python version to 3.5

- - - - -


3 changed files:

- README.md
- gajim/gajim.py
- setup.py


Changes:

=====================================
README.md
=====================================
--- a/README.md
+++ b/README.md
@@ -3,10 +3,10 @@
 
 ### Runtime Requirements
 
-- python3.4 or higher
+- python3.5 or higher
 - python3-gi
 - python3-gi-cairo
-- gir1.2-gtk-3.0
+- gir1.2-gtk-3.0 (>=3.22)
 - python3-nbxmpp
 - python3-openssl (>=0.14)
 - python3-pyasn1


=====================================
gajim/gajim.py
=====================================
--- a/gajim/gajim.py
+++ b/gajim/gajim.py
@@ -56,7 +56,7 @@ from gajim.common import i18n
 from gajim.common import logging_helpers
 
 MIN_NBXMPP_VER = "0.6.4"
-MIN_GTK_VER = "3.20.0"
+MIN_GTK_VER = "3.22.0"
 
 
 class GajimApplication(Gtk.Application):


=====================================
setup.py
=====================================
--- a/setup.py
+++ b/setup.py
@@ -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



View it on GitLab: 
https://dev.gajim.org/gajim/gajim/compare/5353f770a10ee0259c6421a7883e98ddaeeae467...1d2c3d9fbc7cddfa53684ca530e334a15b6d7da5

---
View it on GitLab: 
https://dev.gajim.org/gajim/gajim/compare/5353f770a10ee0259c6421a7883e98ddaeeae467...1d2c3d9fbc7cddfa53684ca530e334a15b6d7da5
You're receiving this email because of your account on dev.gajim.org.
_______________________________________________
Commits mailing list
[email protected]
https://lists.gajim.org/cgi-bin/listinfo/commits

Reply via email to