Skip to content
Snippets Groups Projects
Commit 7ad0e8bb authored by John Chapman's avatar John Chapman
Browse files

Fix race condition in AtlasPyFwdBwdPorts build

In AthSimulation builds of AtlasPyFwdBwdPorts the installation of
two python packages fails due to unmet dependencies. The fact that
this does not occur in Athena builds suggested a race condition.
The problem packages were determined to be grin and flake8. Adding
approriate DEPENDS statements for these packages solved the issue.
See ATLINFR-1680.


Former-commit-id: 431fcd2e
parent 9a00878d
No related branches found
No related tags found
No related merge requests found
......@@ -120,7 +120,8 @@ _setup_python_package( futures
# Install grin:
_setup_python_package( grin
${CMAKE_CURRENT_SOURCE_DIR}/src/grin-1.2.1.tar.gz
d894426dfbf70bc105388c2a51348199 )
d894426dfbf70bc105388c2a51348199
DEPENDS distribute )
# Install jsonpickle:
_setup_python_package( jsonpickle
......@@ -160,6 +161,7 @@ _setup_python_package( pyflakes
_setup_python_package( flake8
${CMAKE_CURRENT_SOURCE_DIR}/src/flake8-3.3.0.tar.gz
3df622aac9bad27c04f34164609bbed8
DEPENDS pyflakes
SINGLE_VERSION )
# Install pyinotify:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment