mirror of
https://github.com/nicolabs/nicobot.git
synced 2025-09-05 06:33:25 +02:00
PyYAML requires Python 3.5+
This commit is contained in:
parent
aaa277e8fc
commit
39bcabf20f
|
@ -1,6 +1,5 @@
|
|||
language: python
|
||||
python:
|
||||
- "3.4"
|
||||
- "3.5"
|
||||
- "3.6"
|
||||
- "3.7"
|
||||
|
|
3
setup.py
3
setup.py
|
@ -25,7 +25,8 @@ setuptools.setup(
|
|||
'Development Status :: 3 - Alpha',
|
||||
'Topic :: Communications :: Chat'
|
||||
],
|
||||
python_requires='>=3.4.2',
|
||||
# PyYAML requires Python 3.5+
|
||||
python_requires='>=3.5',
|
||||
# TODO This duplicates requirements-build.txt ?
|
||||
setup_requires=['setuptools-scm'],
|
||||
# TODO This duplicates requirements-runtime.txt
|
||||
|
|
Loading…
Reference in a new issue