Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PyOV] Fix nightly pip conflicts #13387

Merged
1 change: 0 additions & 1 deletion src/bindings/python/requirements_test.txt
Expand Up @@ -21,7 +21,6 @@ flake8_coding
flake8_commas
flake8_pep3101
flake8_quotes
import-order
mypy
onnx<1.12.0
Pep8-naming
Expand Down
2 changes: 1 addition & 1 deletion tests/memory_tests/test_runner/requirements.txt
@@ -1,4 +1,4 @@
pytest~=5.0
pytest>=5.0,<=7.0.1
PyYAML==5.4.1
jsonschema==3.2.0
distro==1.5.0
Expand Down
2 changes: 1 addition & 1 deletion tests/time_tests/test_runner/requirements.txt
@@ -1,4 +1,4 @@
pytest~=5.0
pytest>=5.0,<=7.0.1
attrs==19.1.0
PyYAML==5.4.1
jsonschema==3.2.0
Expand Down
2 changes: 1 addition & 1 deletion tools/pot/setup.py
Expand Up @@ -81,7 +81,7 @@ def get_version():
#'hyperopt~=0.1.2',
]

DEV_EXTRAS = ['pytest==4.5.0', 'openpyxl==2.6.4', 'pytest-mock==3.1.1']
DEV_EXTRAS = ['pytest>=5.0,<=7.0.1', 'openpyxl==2.6.4', 'pytest-mock==3.1.1']

DEPENDENCY_LINKS = []

Expand Down