Skip to content

Commit

Permalink
Merge pull request #31 from ernstleierzopf/fix_linking
Browse files Browse the repository at this point in the history
Fix linking
  • Loading branch information
whotwagner authored Aug 2, 2024
2 parents 61810ef + 3fe6850 commit 032e30f
Showing 1 changed file with 2 additions and 15 deletions.
17 changes: 2 additions & 15 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,15 +154,13 @@
find:
paths: "{{aminer_pythonpath}}"
patterns: 'zmq'
recurse: yes
file_type: "directory"
register: zmq

- name: Find pyzmq.libs
find:
paths: "{{aminer_pythonpath}}"
patterns: 'pyzmq.libs'
recurse: yes
file_type: "directory"
register: pyzmqlibs

Expand All @@ -183,9 +181,8 @@
- name: Find json.cpython
find:
paths: "{{aminer_pythonpath}}"
patterns: 'orjson.cpython*.so'
recurse: yes
file_type: "any"
patterns: 'orjson'
file_type: "directory"
register: orjson

- name: Link orjson
Expand All @@ -199,7 +196,6 @@
find:
paths: "{{aminer_pythonpath}}"
patterns: 'posix1e.cpython*.so'
recurse: yes
file_type: "any"
register: output

Expand All @@ -214,7 +210,6 @@
find:
paths: "{{aminer_pythonpath}}"
patterns: 'scipy'
recurse: yes
file_type: "directory"
register: scipy

Expand All @@ -229,7 +224,6 @@
find:
paths: "{{aminer_pythonpath}}"
patterns: 'cerberus'
recurse: yes
file_type: "directory"
register: cerberus

Expand All @@ -244,7 +238,6 @@
find:
paths: "{{aminer_pythonpath}}"
patterns: 'kafka'
recurse: yes
file_type: "directory"
register: kafka

Expand All @@ -259,7 +252,6 @@
find:
paths: "{{aminer_pythonpath}}"
patterns: 'numpy'
recurse: yes
file_type: "directory"
register: numpy

Expand Down Expand Up @@ -287,7 +279,6 @@
find:
paths: "{{aminer_pythonpath}}"
patterns: 'pytz'
recurse: yes
file_type: "directory"
register: pytz

Expand All @@ -302,7 +293,6 @@
find:
paths: "{{aminer_pythonpath}}"
patterns: 'dateutil'
recurse: yes
file_type: "directory"
register: dateutil

Expand All @@ -317,7 +307,6 @@
find:
paths: "{{aminer_pythonpath}}"
patterns: 'patsy'
recurse: yes
file_type: "directory"
register: patsy

Expand Down Expand Up @@ -345,7 +334,6 @@
find:
paths: "{{aminer_pythonpath}}"
patterns: 'statsmodels'
recurse: yes
file_type: "directory"
register: statsmodels

Expand All @@ -360,7 +348,6 @@
find:
paths: "{{aminer_pythonpath}}"
patterns: 'defusedxml'
recurse: yes
file_type: "directory"
register: defusedxml

Expand Down

0 comments on commit 032e30f

Please sign in to comment.