Skip to content

Commit b249c0f

Browse files
authored
drop python 3.6 support (via #675)
1 parent d3bfabb commit b249c0f

File tree

10 files changed

+15
-15
lines changed

10 files changed

+15
-15
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
allure-pytest-bdd,
1717
allure-robotframework
1818
]
19-
python-version: [3.6, 3.7, 3.8, 3.9]
19+
python-version: [3.7, 3.8, 3.9, "3.10"]
2020
include:
21-
- python-version: 3.9
21+
- python-version: 3.10
2222
static-check: yes
2323

2424
steps:

allure-behave/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
'Topic :: Software Development :: Testing :: BDD',
1313
'Programming Language :: Python :: 3',
1414
'Programming Language :: Python :: 3 :: Only',
15-
'Programming Language :: Python :: 3.6',
1615
'Programming Language :: Python :: 3.7',
1716
'Programming Language :: Python :: 3.8',
1817
'Programming Language :: Python :: 3.9',
18+
'Programming Language :: Python :: 3.10',
1919
]
2020

2121
setup_requires = [

allure-behave/tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{36,37,38,39}
3+
py{37,38,39,310}
44
static-check
55

66
[testenv]
@@ -26,7 +26,7 @@ commands =
2626
# https://github.com/allure-framework/allure-python/issues/321
2727
passenv = HOME
2828

29-
#basepython = python3.6
29+
#basepython = python3.7
3030

3131
setenv =
3232
TEST_TMP={envtmpdir}
@@ -51,7 +51,7 @@ commands=
5151
[testenv:behave-master]
5252
passenv = HOME
5353

54-
basepython = python3.6
54+
basepython = python3.7
5555

5656
setenv =
5757
TEST_TMP={envtmpdir}

allure-nose2/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
'Topic :: Software Development :: Testing',
1212
'Programming Language :: Python :: 3',
1313
'Programming Language :: Python :: 3 :: Only',
14-
'Programming Language :: Python :: 3.6',
1514
'Programming Language :: Python :: 3.7',
1615
'Programming Language :: Python :: 3.8',
1716
'Programming Language :: Python :: 3.9',
17+
'Programming Language :: Python :: 3.10',
1818
]
1919

2020
setup_requires = [

allure-nose2/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{36,37,38,39}
3+
py{37,38,39,310}
44
static-check
55

66
[testenv]

allure-pytest-bdd/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{36,37,38,39}
3+
py{37,38,39,310}
44

55
[testenv]
66
passenv = HOME

allure-pytest/tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{36,37,38,39}
3+
py{37,38,39,310}
44
xdist
55
integration
66
static-check
@@ -33,7 +33,7 @@ description = Test integration with pytest-flakes
3333

3434
passenv = HOME
3535

36-
basepython = python3.6
36+
basepython = python3.7
3737

3838
setenv = ALLURE_INDENT_OUTPUT=yep
3939

@@ -81,7 +81,7 @@ commands =
8181
# `tox -e demo -- -k test_single_feature_label` or
8282
# `tox -e demo -- ./test/steps/`
8383
[testenv:demo]
84-
basepython = python3.5
84+
basepython = python3.7
8585

8686
passenv = HOME
8787

allure-python-commons-test/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{36,37,38,39}
2+
envlist = py{37,38,39,310}
33

44

55
[testenv]

allure-python-commons/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist=
3-
py{36,37,38,39}
3+
py{37,38,39,310}
44
static-check
55

66

allure-robotframework/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist=
3-
py{36,37,38,39}-rf-{3,latest}
3+
py{37,38,39,310}-rf-{3,latest}
44
static-check
55

66

0 commit comments

Comments
 (0)