mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
Jump to python 3.7 as it is the default buster version
This commit is contained in:
parent
d2279af4fb
commit
7862c6df92
3 changed files with 8 additions and 7 deletions
10
.travis.yml
10
.travis.yml
|
@ -8,13 +8,13 @@ addons:
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- python: 3.5
|
- python: 3.7
|
||||||
env: TOXENV=py35
|
env: TOXENV=py37
|
||||||
- python: 3.5
|
- python: 3.7
|
||||||
env: TOXENV=lint
|
env: TOXENV=lint
|
||||||
- python: 3.6
|
- python: 3.7
|
||||||
env: TOXENV=format-check
|
env: TOXENV=format-check
|
||||||
- python: 3.5
|
- python: 3.7
|
||||||
env: TOXENV=docs
|
env: TOXENV=docs
|
||||||
|
|
||||||
install:
|
install:
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -27,7 +27,7 @@ setup(name='Moulinette',
|
||||||
license='AGPL',
|
license='AGPL',
|
||||||
packages=find_packages(exclude=['test']),
|
packages=find_packages(exclude=['test']),
|
||||||
data_files=[(LOCALES_DIR, locale_files)],
|
data_files=[(LOCALES_DIR, locale_files)],
|
||||||
python_requires='>=3.5',
|
python_requires='>=3.7',
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'argcomplete',
|
'argcomplete',
|
||||||
'psutil',
|
'psutil',
|
||||||
|
|
3
tox.ini
3
tox.ini
|
@ -1,6 +1,6 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist =
|
envlist =
|
||||||
py35
|
py37
|
||||||
lint
|
lint
|
||||||
docs
|
docs
|
||||||
skipdist = True
|
skipdist = True
|
||||||
|
@ -44,6 +44,7 @@ skip_install = {[testenv:format]skip_install}
|
||||||
usedevelop = {[testenv:format]usedevelop}
|
usedevelop = {[testenv:format]usedevelop}
|
||||||
|
|
||||||
[testenv:docs]
|
[testenv:docs]
|
||||||
|
basepython = python3.7
|
||||||
usedevelop = True
|
usedevelop = True
|
||||||
commands = python -m sphinx -W doc/ doc/_build
|
commands = python -m sphinx -W doc/ doc/_build
|
||||||
deps =
|
deps =
|
||||||
|
|
Loading…
Add table
Reference in a new issue