Skip to content

Commit

Permalink
Merge pull request #24 from ernstleierzopf/hotfix_break-system-packages
Browse files Browse the repository at this point in the history
remove --break-system-packages parameter from last commit.
  • Loading branch information
whotwagner authored Feb 12, 2024
2 parents 8877d76 + 9af33e7 commit b841525
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ aminer_user: "aminer"
aminer_group: "aminer"
aminer_pythonpath: "/usr/lib/python3/dist-packages"
aminer_docbookxslpath: "/usr/share/xml/docbook/stylesheet/docbook-xsl/manpages/docbook.xsl"
pip_extra_args: ""
4 changes: 2 additions & 2 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,14 +136,14 @@
name: orjson
executable: pip3
state: latest
extra_args: "--break-system-packages"
extra_args: "{{pip_extra_args}}"

- name: Install pyzmq
pip:
name: pyzmq
executable: pip3
state: latest
extra_args: "--break-system-packages"
extra_args: "{{pip_extra_args}}"

- name: Find zmq
find:
Expand Down
1 change: 1 addition & 0 deletions vars/debian-bookworm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ aminer_packages:
- mypy
aminer_usershell: /usr/sbin/nologin
aminer_pythonpath: ['/usr/lib/python3/dist-packages', '/usr/local/lib/python3.11/dist-packages', '/usr/lib/python3.11/dist-packages']
pip_extra_args: "--break-system-packages"

0 comments on commit b841525

Please sign in to comment.