Skip to content

Commit 6382e77

Browse files
committed
Remove requirement for pytest<4.0.0
See man-group#100
1 parent 472a16d commit 6382e77

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

pytest-devpi-server/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
]
2525

2626
install_requires = ['pytest-server-fixtures',
27-
'pytest<4.0.0',
27+
'pytest',
2828
'devpi-server>=3.0.1',
2929
'devpi-client',
3030
'six',

pytest-fixture-config/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
'Programming Language :: Python :: 3.7',
2323
]
2424

25-
install_requires = ['pytest<4.0.0']
25+
install_requires = ['pytest']
2626

2727
tests_require = ['six',
2828
]

pytest-git/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
'Programming Language :: Python :: 3.7',
2323
]
2424

25-
install_requires = ['pytest<4.0.0',
25+
install_requires = ['pytest',
2626
'pytest-shutil',
2727
'gitpython',
2828
]

pytest-listener/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
]
2424

2525
install_requires = ['six',
26-
'pytest<4.0.0',
26+
'pytest',
2727
'pytest-server-fixtures'
2828
]
2929

pytest-profiling/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
]
2424

2525
install_requires = ['six',
26-
'pytest<4.0.0',
26+
'pytest',
2727
'gprof2dot',
2828
]
2929

pytest-pyramid-server/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626

2727
install_requires = ['pytest-server-fixtures',
28-
'pytest<4.0.0',
28+
'pytest',
2929
'pyramid',
3030
'waitress',
3131
'six',

pytest-qt-app/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
'Programming Language :: Python :: 3.7',
2323
]
2424

25-
install_requires = ['pytest<4.0.0',
25+
install_requires = ['pytest',
2626
'pytest-server-fixtures',
2727
'pytest-shutil',
2828
]

pytest-server-fixtures/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
'Programming Language :: Python :: 3.7',
2323
]
2424

25-
install_requires = ['pytest<4.0.0',
25+
install_requires = ['pytest',
2626
'pytest-shutil',
2727
'pytest-fixture-config',
2828
'six',

pytest-shutil/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
install_requires = ['six',
2626
'execnet',
2727
'contextlib2',
28-
'pytest<4.0.0',
28+
'pytest',
2929
'path.py',
3030
'mock',
3131
'termcolor'

pytest-svn/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
'Programming Language :: Python :: 3.7',
2323
]
2424

25-
install_requires = ['pytest<4.0.0',
25+
install_requires = ['pytest',
2626
'pytest-shutil',
2727
]
2828

pytest-verbose-parametrize/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
'Programming Language :: Python :: 3.7',
2323
]
2424

25-
install_requires = ['pytest<4.0.0',
25+
install_requires = ['pytest',
2626
'six',
2727
]
2828

pytest-virtualenv/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
install_requires = ['pytest-fixture-config',
2626
'pytest-shutil',
27-
'pytest<4.0.0',
27+
'pytest',
2828
'virtualenv',
2929
]
3030

pytest-webdriver/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
]
2424

2525
install_requires = ['py',
26-
'pytest<4.0.0',
26+
'pytest',
2727
'pytest-fixture-config',
2828
'selenium',
2929
]

0 commit comments

Comments
 (0)