mirror of
https://github.com/nicolabs/nicobot.git
synced 2025-09-05 06:33:25 +02:00
~ Python requirements bumped to 3.6 (slixmpp does not compile on 3.5 anymore)
This commit is contained in:
parent
333630f2f6
commit
84b1e653f7
|
@ -1,6 +1,5 @@
|
|||
language: python
|
||||
python: # this works for Linux but is ignored on macOS or Windows
|
||||
- "3.5"
|
||||
- "3.6"
|
||||
- "3.7"
|
||||
- "3.8"
|
||||
|
|
|
@ -45,7 +45,7 @@ The bots can be installed and run at your choice from :
|
|||
|
||||
A classic (Python package) installation requires :
|
||||
|
||||
- Python 3 (>= 3.5) and pip ([should already be bundled with Python](https://pip.pypa.io/en/stable/installing)) ; e.g. on Debian : `sudo apt install python3 python3-pip`
|
||||
- Python 3 (>= 3.6) and pip ([should already be bundled with Python](https://pip.pypa.io/en/stable/installing)) ; e.g. on Debian : `sudo apt install python3 python3-pip`
|
||||
- [signal-cli](https://github.com/AsamK/signal-cli) for the *Signal* backend (see [Using the Signal backend](#using-the-signal-backend) below for requirements)
|
||||
- For *transbot* : an IBM Cloud account ([free account ok](https://www.ibm.com/cloud/free))
|
||||
|
||||
|
|
3
setup.py
3
setup.py
|
@ -103,7 +103,8 @@ setuptools.setup(
|
|||
'Topic :: Software Development :: Internationalization'
|
||||
],
|
||||
# PyYAML requires Python 3.5+
|
||||
python_requires='>=3.5',
|
||||
# slixmpp 1.7.0+ requires Python 3.7 (but still compiles on 3.6)
|
||||
python_requires='>=3.6',
|
||||
# TODO This duplicates requirements-build.txt ?
|
||||
setup_requires=['setuptools-scm'],
|
||||
# TODO This duplicates requirements-runtime.txt
|
||||
|
|
Loading…
Reference in a new issue