Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/python-nbxmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlovetox <philipp@hoerist.com>2021-11-02 11:08:09 +0300
committerlovetox <philipp@hoerist.com>2021-11-02 17:06:49 +0300
commit5865c33f9f3311f28fcc5c265c77eaed61cb1bda (patch)
tree7971f57de78522bd54a35a60ce9e1320fff0169e
parentbf9ca7f2bca722ab0a27a131c46749530f5bf472 (diff)
Raise python requirement to 3.9
-rw-r--r--README.md2
-rw-r--r--mypy.ini2
-rw-r--r--setup.cfg4
3 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 6661992..1d1ca67 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@
## Runtime Requirements
-- python >= 3.7.0
+- python >= 3.9.0
- PyGObject
- GLib >= 2.60
- libsoup
diff --git a/mypy.ini b/mypy.ini
index 4cd3d20..71e5d22 100644
--- a/mypy.ini
+++ b/mypy.ini
@@ -1,5 +1,5 @@
[mypy]
-python_version = 3.7
+python_version = 3.9
warn_unused_configs = True
disallow_incomplete_defs = True
allow_redefinition = True
diff --git a/setup.cfg b/setup.cfg
index d41d98f..ac8d011 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -11,10 +11,10 @@ url = https://dev.gajim.org/gajim/python-nbxmpp
license_file = COPYING
license = GPL v3
classifiers =
- Programming Language :: Python :: 3
+ Programming Language :: Python :: 3.9
[options]
-python_requires = >=3.7
+python_requires = >=3.9
packages = find:
install_requires =
precis-i18n>=1.0.0