summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2018-08-08 23:42:22 +0200
committermathieui <mathieui@mathieui.net>2018-08-08 23:42:22 +0200
commit86a2f280d23cec176e381e088cd4e5d73bc58f4c (patch)
treea79cf4e715419b54983a0edf52e358e1a9d12241
parent490f15b8fc9e5d205fd75cf4ce13cd2b3841ddf1 (diff)
downloadslixmpp-86a2f280d23cec176e381e088cd4e5d73bc58f4c.tar.gz
slixmpp-86a2f280d23cec176e381e088cd4e5d73bc58f4c.tar.bz2
slixmpp-86a2f280d23cec176e381e088cd4e5d73bc58f4c.tar.xz
slixmpp-86a2f280d23cec176e381e088cd4e5d73bc58f4c.zip
Document that slixmpp is now 3.5+ only
-rw-r--r--INSTALL2
-rw-r--r--README.rst2
-rw-r--r--docs/differences.rst4
-rw-r--r--docs/index.rst2
-rwxr-xr-xsetup.py2
5 files changed, 6 insertions, 6 deletions
diff --git a/INSTALL b/INSTALL
index 3e45700d..982911ed 100644
--- a/INSTALL
+++ b/INSTALL
@@ -1,5 +1,5 @@
Pre-requisites:
-- Python 3.4
+- Python 3.5+
- Cython 0.22 and libidn, optionally (making JID faster by compiling the stringprep module)
Install:
diff --git a/README.rst b/README.rst
index 96bce48c..e7de1107 100644
--- a/README.rst
+++ b/README.rst
@@ -1,7 +1,7 @@
Slixmpp
#########
-Slixmpp is an MIT licensed XMPP library for Python 3.4+. It is a fork of
+Slixmpp is an MIT licensed XMPP library for Python 3.5+. It is a fork of
SleekXMPP.
Slixmpp's goals is to only rewrite the core of the library (the low level
diff --git a/docs/differences.rst b/docs/differences.rst
index f6e005b5..8a86427b 100644
--- a/docs/differences.rst
+++ b/docs/differences.rst
@@ -3,8 +3,8 @@
Differences from SleekXMPP
==========================
-**Python 3.4+ only**
- slixmpp will only work on python 3.4 and above.
+**Python 3.5+ only**
+ slixmpp will only work on python 3.5 and above.
**Stanza copies**
The same stanza object is given through all the handlers; a handler that
diff --git a/docs/index.rst b/docs/index.rst
index 92e17eec..151ef75d 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -21,7 +21,7 @@ Slixmpp
which goal is to use asyncio instead of threads to handle networking. See
:ref:`differences`.
-Slixmpp is an :ref:`MIT licensed <license>` XMPP library for Python 3.4+,
+Slixmpp is an :ref:`MIT licensed <license>` XMPP library for Python 3.5+,
Slixmpp's design goals and philosphy are:
diff --git a/setup.py b/setup.py
index 3b3e5296..b751a62b 100755
--- a/setup.py
+++ b/setup.py
@@ -29,9 +29,9 @@ CLASSIFIERS = [
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
- 'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
+ 'Programming Language :: Python :: 3.7',
'Topic :: Internet :: XMPP',
'Topic :: Software Development :: Libraries :: Python Modules',
]