Update Python version minimum requirement to 3.7
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
c3fbc6cb80
commit
a4bbc404ed
6 changed files with 9 additions and 11 deletions
|
@ -1,9 +1,7 @@
|
||||||
language: python
|
language: python
|
||||||
python:
|
python:
|
||||||
- "3.4"
|
- "3.7"
|
||||||
- "3.5"
|
- "3.8-dev"
|
||||||
- "3.6"
|
|
||||||
- "3.7-dev"
|
|
||||||
install:
|
install:
|
||||||
- "pip install ."
|
- "pip install ."
|
||||||
script: testall.py
|
script: testall.py
|
||||||
|
|
2
INSTALL
2
INSTALL
|
@ -1,5 +1,5 @@
|
||||||
Pre-requisites:
|
Pre-requisites:
|
||||||
- Python 3.5+
|
- Python 3.7+
|
||||||
- Cython 0.22 and libidn, optionally (making JID faster by compiling the stringprep module)
|
- Cython 0.22 and libidn, optionally (making JID faster by compiling the stringprep module)
|
||||||
- GnuPG, for testing
|
- GnuPG, for testing
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
Slixmpp
|
Slixmpp
|
||||||
#########
|
#########
|
||||||
|
|
||||||
Slixmpp is an MIT licensed XMPP library for Python 3.5+. It is a fork of
|
Slixmpp is an MIT licensed XMPP library for Python 3.7+. It is a fork of
|
||||||
SleekXMPP.
|
SleekXMPP.
|
||||||
|
|
||||||
Slixmpp's goals is to only rewrite the core of the library (the low level
|
Slixmpp's goals is to only rewrite the core of the library (the low level
|
||||||
|
|
|
@ -3,8 +3,9 @@
|
||||||
Differences from SleekXMPP
|
Differences from SleekXMPP
|
||||||
==========================
|
==========================
|
||||||
|
|
||||||
**Python 3.5+ only**
|
**Python 3.7+ only**
|
||||||
slixmpp will only work on python 3.5 and above.
|
slixmpp will work on python 3.7 and above. It may work with previous
|
||||||
|
versions but we provide no guarantees.
|
||||||
|
|
||||||
**Stanza copies**
|
**Stanza copies**
|
||||||
The same stanza object is given through all the handlers; a handler that
|
The same stanza object is given through all the handlers; a handler that
|
||||||
|
|
|
@ -21,7 +21,7 @@ Slixmpp
|
||||||
which goal is to use asyncio instead of threads to handle networking. See
|
which goal is to use asyncio instead of threads to handle networking. See
|
||||||
:ref:`differences`.
|
:ref:`differences`.
|
||||||
|
|
||||||
Slixmpp is an :ref:`MIT licensed <license>` XMPP library for Python 3.5+,
|
Slixmpp is an :ref:`MIT licensed <license>` XMPP library for Python 3.7+,
|
||||||
|
|
||||||
Slixmpp's design goals and philosphy are:
|
Slixmpp's design goals and philosphy are:
|
||||||
|
|
||||||
|
|
3
setup.py
3
setup.py
|
@ -28,9 +28,8 @@ CLASSIFIERS = [
|
||||||
'Intended Audience :: Developers',
|
'Intended Audience :: Developers',
|
||||||
'License :: OSI Approved :: MIT License',
|
'License :: OSI Approved :: MIT License',
|
||||||
'Programming Language :: Python',
|
'Programming Language :: Python',
|
||||||
'Programming Language :: Python :: 3.5',
|
|
||||||
'Programming Language :: Python :: 3.6',
|
|
||||||
'Programming Language :: Python :: 3.7',
|
'Programming Language :: Python :: 3.7',
|
||||||
|
'Programming Language :: Python :: 3.8',
|
||||||
'Topic :: Internet :: XMPP',
|
'Topic :: Internet :: XMPP',
|
||||||
'Topic :: Software Development :: Libraries :: Python Modules',
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue