Skip to content

Commit 2b324c6

Browse files
committed
Prepare for v2019.1.6 release
This is the last version with supports PyTest's `pytest_namespace` and is thus locked to PyTest < 4.1
1 parent 03e9037 commit 2b324c6

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

README.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,11 @@ description.
140140
Changelog
141141
---------
142142

143+
v2019.1.6
144+
~~~~~~~~~
145+
146+
* No changes were made besides locking to PyTest < 4.1
147+
143148
v2017.11.11
144149
~~~~~~~~~~~
145150

pytest_helpers_namespace/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
'''
33
:codeauthor: :email:`Pedro Algarvio ([email protected])`
4-
:copyright: © 2016-2017 by the SaltStack Team, see AUTHORS for more details.
4+
:copyright: © 2016-2019 by the SaltStack Team, see AUTHORS for more details.
55
:license: Apache 2.0, see LICENSE for more details.
66
77

pytest_helpers_namespace/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
'''
33
:codeauthor: :email:`Pedro Algarvio ([email protected])`
4-
:copyright: © 2016-2017 by the SaltStack Team, see AUTHORS for more details.
4+
:copyright: © 2016-2019 by the SaltStack Team, see AUTHORS for more details.
55
:license: Apache 2.0, see LICENSE for more details.
66
77
@@ -16,5 +16,5 @@
1616
from __future__ import absolute_import
1717

1818

19-
__version_info__ = (2017, 11, 11)
19+
__version_info__ = (2019, 1, 6)
2020
__version__ = '{0}.{1}.{2}'.format(*__version_info__)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def read(fname):
6262
description='PyTest Helpers Namespace',
6363
long_description=LONG_DESCRIPTION,
6464
packages=find_packages(),
65-
install_requires=['pytest>=2.9.1'],
65+
install_requires=['pytest>=2.9.1,<4.1'],
6666
classifiers=[
6767
'Development Status :: 5 - Production/Stable',
6868
'Framework :: Pytest',

0 commit comments

Comments
 (0)