perl/Module-Build-Tiny: update to 0.051 for Perl 5.36 and 5.38
[oi-userland.git] / components / python / polib / patches / 01-tox.ini.patch
blob52e89e58aab3f1982a41d89d281e8d795eda3d53
1 https://github.com/izimobil/polib/issues/136
3 --- polib-1.2.0.orig/tox.ini
4 +++ polib-1.2.0/tox.ini
5 @@ -0,0 +1,28 @@
6 +[tox]
7 +envlist = py27, py36, py37, py38, py39, py310, py311, pypy, pypy3, lint
9 +[testenv]
10 +commands = coverage run tests/tests.py
11 +basepython=
12 + py27: python2.7
13 + py36: python3.6
14 + py37: python3.7
15 + py38: python3.8
16 + py39: python3.9
17 + py310: python3.10
18 + py311: python3.11
19 + pypy: pypy
20 + pypy3: pypy3
21 + lint: python3.9
22 +deps =
23 + coverage
24 + importlib-metadata>=6.0.0
25 +download = True
26 +setenv =
27 + pypy: VIRTUALENV_PIP=20.1.1
28 + pypy: VIRTUALENV_DOWNLOAD=1
30 +[testenv:lint]
31 +commands = pycodestyle polib.py
32 +deps =
33 + pycodestyle>=2.6.0