Skip to content

Commit

Permalink
pin pytest to <4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Xinghong Fang committed Nov 15, 2018
1 parent 7af04f9 commit 061f2e8
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion pytest-devpi-server/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
]

install_requires = ['pytest-server-fixtures',
'pytest==3.10.1',
'pytest<4.0.0',
'devpi-server>=3.0.1',
'devpi-client',
'six',
Expand Down
2 changes: 1 addition & 1 deletion pytest-fixture-config/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
'Programming Language :: Python :: 3.6',
]

install_requires = ['pytest==3.10.1']
install_requires = ['pytest<4.0.0']

tests_require = ['six',
]
Expand Down
2 changes: 1 addition & 1 deletion pytest-git/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
'Programming Language :: Python :: 3.6',
]

install_requires = ['pytest==3.10.1',
install_requires = ['pytest<4.0.0',
'pytest-shutil',
'gitpython',
]
Expand Down
2 changes: 1 addition & 1 deletion pytest-listener/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
]

install_requires = ['six',
'pytest==3.10.1',
'pytest<4.0.0',
'pytest-server-fixtures'
]

Expand Down
2 changes: 1 addition & 1 deletion pytest-profiling/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
]

install_requires = ['six',
'pytest==3.10.1',
'pytest<4.0.0',
'gprof2dot',
]

Expand Down
2 changes: 1 addition & 1 deletion pytest-pyramid-server/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@


install_requires = ['pytest-server-fixtures',
'pytest==3.10.1',
'pytest<4.0.0',
'pyramid',
'waitress',
'six',
Expand Down
2 changes: 1 addition & 1 deletion pytest-qt-app/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
'Programming Language :: Python :: 3.6',
]

install_requires = ['pytest==3.10.1',
install_requires = ['pytest<4.0.0',
'pytest-server-fixtures',
'pytest-shutil',
]
Expand Down
2 changes: 1 addition & 1 deletion pytest-server-fixtures/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
'Programming Language :: Python :: 3.6',
]

install_requires = ['pytest==3.10.1',
install_requires = ['pytest<4.0.0',
'pytest-shutil',
'pytest-fixture-config',
'six',
Expand Down
2 changes: 1 addition & 1 deletion pytest-shutil/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
install_requires = ['six',
'execnet',
'contextlib2',
'pytest==3.10.1',
'pytest<4.0.0',
'path.py',
'mock',
'termcolor'
Expand Down
2 changes: 1 addition & 1 deletion pytest-svn/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
'Programming Language :: Python :: 3.6',
]

install_requires = ['pytest==3.10.1',
install_requires = ['pytest<4.0.0',
'pytest-shutil',
]

Expand Down
2 changes: 1 addition & 1 deletion pytest-verbose-parametrize/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
'Programming Language :: Python :: 3.6',
]

install_requires = ['pytest==3.10.1',
install_requires = ['pytest<4.0.0',
'six',
]

Expand Down
2 changes: 1 addition & 1 deletion pytest-virtualenv/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

install_requires = ['pytest-fixture-config',
'pytest-shutil',
'pytest==3.10.1',
'pytest<4.0.0',
]

tests_require = [
Expand Down
2 changes: 1 addition & 1 deletion pytest-webdriver/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
]

install_requires = ['py',
'pytest==3.10.1',
'pytest<4.0.0',
'pytest-fixture-config',
'selenium',
]
Expand Down

0 comments on commit 061f2e8

Please sign in to comment.