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


Commits:
f47c9025 by lovetox at 2021-11-02T14:43:00+01:00
Require python 3.9

- - - - -


3 changed files:

- README.md
- setup.cfg
- setup.py


Changes:

=====================================
README.md
=====================================
@@ -3,7 +3,7 @@ # Welcome to Gajim
 
 ### Runtime Requirements
 
-- python3.7 or higher
+- python3.9 or higher
 - python3-gi
 - python3-gi-cairo
 - gir1.2-gtk-3.0 (>=3.22)


=====================================
setup.cfg
=====================================
@@ -16,7 +16,7 @@ classifiers =
     Programming Language :: Python :: 3
 
 [options]
-python_requires = >=3.7
+python_requires = >=3.9
 packages = find:
 test_suite = test
 install_requires =
@@ -24,7 +24,6 @@ install_requires =
     keyring
     nbxmpp>=2.99.0
     packaging
-    setuptools; python_version < '3.9'
     precis-i18n>=1.0.0
     pyOpenSSL>=16.2
     pycairo>=1.16.0


=====================================
setup.py
=====================================
@@ -3,8 +3,8 @@
 import os
 import sys
 
-if sys.version_info < (3, 7):
-    sys.exit('Gajim needs Python 3.7+')
+if sys.version_info < (3, 9):
+    sys.exit('Gajim needs Python 3.9+')
 
 from setuptools import setup, find_packages
 from setuptools import Command



View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/f47c9025cba37a60c8fc885f24ba5d422628d2db

-- 
View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/f47c9025cba37a60c8fc885f24ba5d422628d2db
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