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

Fix linking #31

Merged
merged 4 commits into from
Aug 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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