Skip to content

Commit 6351692

Browse files
authored
bump version to 2.6.0 (via #359)
1 parent 30b36ae commit 6351692

File tree

8 files changed

+21
-14
lines changed

8 files changed

+21
-14
lines changed

Jenkinsfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ pipeline {
66
stages {
77
stage("Build") {
88
steps {
9-
sh 'tox --workdir=/tmp -c allure-python-commons-test/tox.ini'
10-
sh 'tox --workdir=/tmp -c allure-python-commons/tox.ini'
11-
sh 'tox --workdir=/tmp -c allure-pytest/tox.ini'
12-
sh 'tox --workdir=/tmp -c allure-behave/tox.ini'
13-
sh 'tox --workdir=/tmp -c allure-robotframework/tox.ini'
9+
sh 'tox -r --workdir=/tmp -c allure-python-commons-test/tox.ini'
10+
sh 'tox -r --workdir=/tmp -c allure-python-commons/tox.ini'
11+
sh 'tox -r --workdir=/tmp -c allure-pytest/tox.ini'
12+
sh 'tox -r --workdir=/tmp -c allure-behave/tox.ini'
13+
sh 'tox -r --workdir=/tmp -c allure-robotframework/tox.ini'
1414
}
1515
}
1616
}

allure-behave/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools import setup
33

44
PACKAGE = "allure-behave"
5-
VERSION = "2.5.5"
5+
VERSION = "2.6.0"
66

77
classifiers = [
88
'Development Status :: 5 - Production/Stable',
@@ -15,7 +15,7 @@
1515

1616
install_requires = [
1717
"behave>=1.2.5",
18-
"allure-python-commons==2.5.5"
18+
"allure-python-commons==2.6.0"
1919
]
2020

2121

allure-behave/tox.ini

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,10 @@ commands =
8989

9090

9191
[testenv:static_check]
92+
basepython = python3.7
93+
94+
skip_install = True
95+
9296
deps = flake8
9397

9498
commands = flake8 src/

allure-pytest/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
pass
1515

1616
PACKAGE = "allure-pytest"
17-
VERSION = "2.5.5"
17+
VERSION = "2.6.0"
1818

1919
classifiers = [
2020
'Development Status :: 5 - Production/Stable',
@@ -28,7 +28,7 @@
2828
install_requires = [
2929
"pytest>=3.3.0",
3030
"six>=1.9.0",
31-
"allure-python-commons==2.5.5"
31+
"allure-python-commons==2.6.0"
3232
]
3333

3434

allure-pytest/tox.ini

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,10 @@ commands=
8686

8787

8888
[testenv:static_check]
89+
basepython = python3.7
90+
91+
skip_install = True
92+
8993
deps = flake8
9094
; flake8-import-order
9195
flake8-builtins
@@ -95,7 +99,6 @@ commands =
9599
flake8 src/ test/
96100

97101

98-
99102
[flake8]
100103
max-line-length = 120
101104
import-order-style = google

allure-python-commons-test/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup
22

33
PACKAGE = "allure-python-commons-test"
4-
VERSION = "2.5.5"
4+
VERSION = "2.6.0"
55

66
install_requires = [
77
"pyhamcrest>=1.9.0",

allure-python-commons/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup
22

33
PACKAGE = "allure-python-commons"
4-
VERSION = "2.5.5"
4+
VERSION = "2.6.0"
55

66
classifiers = [
77
'Development Status :: 5 - Production/Stable',

allure-robotframework/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44

55
PACKAGE = "allure-robotframework"
6-
VERSION = "2.5.5"
6+
VERSION = "2.6.0"
77

88
classifiers = [
99
'Development Status :: 5 - Production/Stable',
@@ -16,7 +16,7 @@
1616
]
1717

1818
install_requires = [
19-
"allure-python-commons==2.5.5",
19+
"allure-python-commons==2.6.0",
2020
]
2121

2222

0 commit comments

Comments
 (0)