Skip to content

Commit d9540fd

Browse files
committed
Simplify tox matrix, do not pin parse_type dependency.
We don't need to pin parse_type, we can just allow any version that the user has.
1 parent b05dbe0 commit d9540fd

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

CHANGES.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This release introduces breaking changes in order to be more in line with the of
1010
- Removed feature level examples for the gherkin compatibility (olegpidsadnyi)
1111
- Removed vertical examples for the gherkin compatibility (olegpidsadnyi)
1212
- Step arguments are no longer fixtures (olegpidsadnyi)
13-
- Drop support of python 3.6, pytest 4
13+
- Drop support of python 3.6, pytest 4 (elchupanebrej)
1414

1515

1616

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[tool.black]
66
line-length = 120
7-
target-version = ['py37', 'py38', 'py39', 'py310']
7+
target-version = ["py37", "py38", "py39", "py310"]
88

99
[tool.isort]
1010
profile = "black"

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ install_requires =
3030
glob2
3131
Mako
3232
parse
33-
parse_type>=0.6.0
33+
parse_type
3434
py
3535
pytest>=5.0
3636

tox.ini

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
[tox]
22
distshare = {homedir}/.tox/distshare
33
envlist = py310-pytestlatest-linters,
4-
py310-pytest{625, latest}-coverage,
5-
py39-pytest{50,51,52,53,54,60,61,62}-coverage,
4+
py310-pytest{50,51,52,53,54,60,61,62,70,latest}-coverage,
65
py{37,38,39}-pytestlatest-coverage,
76
py310-pytestlatest-xdist-coverage
87
skip_missing_interpreters = true
@@ -13,7 +12,6 @@ setenv =
1312
xdist: _PYTEST_MORE_ARGS=-n3 -rfsxX
1413
deps =
1514
pytestlatest: pytest
16-
pytest625: pytest~=6.2.5
1715
pytest62: pytest~=6.2.0
1816
pytest61: pytest~=6.1.0
1917
pytest60: pytest~=6.0.0

0 commit comments

Comments
 (0)