Jump to python 3.7 as it is the default buster version

This commit is contained in:
Augustin Trancart 2020-02-16 17:34:58 +01:00
parent d2279af4fb
commit 7862c6df92
3 changed files with 8 additions and 7 deletions

View file

@ -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:

View file

@ -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',

View file

@ -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 =