Skip to content

Commit

Permalink
GH #755 - Moving posix-ipc to zato_environment.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
dsuch committed Sep 21, 2024
1 parent 5b9fd26 commit 4b1a6c5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 0 additions & 1 deletion code/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,6 @@ memray==1.4.1; sys_platform == 'linux'
newrelic==8.4.0; sys_platform == 'linux'
sh==1.14.3; sys_platform == 'linux'
portalocker==2.6.0
posix-ipc==1.0.0; sys_platform != 'Windows'
psycopg2-binary==2.9.5; sys_platform == 'linux'
pysimdjson==5.0.2; sys_platform == 'linux'
pysolr==3.9.0; sys_platform == 'linux'
Expand Down
4 changes: 4 additions & 0 deletions code/util/zato_environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,10 @@ def pip_install_standalone_requirements(self) -> 'None':
'zato-ext-bunch==1.2'
]

# This needs to be installed here rather than via requirements.txt
if not is_windows:
packages.append('posix-ipc==1.0.0')

for package in packages:

# Set up the command ..
Expand Down

0 comments on commit 4b1a6c5

Please sign in to comment.