diff --git a/group_vars/python.yml b/group_vars/python.yml index ff11ced77bc2b375e2b9999cecd8f728a979cd65..aa188fe50e9d59f3a3674b9bed796a3a412f40ce 100644 --- a/group_vars/python.yml +++ b/group_vars/python.yml @@ -16,7 +16,6 @@ python3pkg: - python3-tox - python3-pip - pipenv - - pyenv - llvm - cmake - python3-flake8 diff --git a/roles/python_stack/tasks/python.yml b/roles/python_stack/tasks/python.yml index a223aae77fce92cb6bf2885a1744602af9582b19..c7311c442309fb21c9c73a99d24534b8b97ac07f 100644 --- a/roles/python_stack/tasks/python.yml +++ b/roles/python_stack/tasks/python.yml @@ -1,20 +1,9 @@ --- - name: Software for dependency installation dnf: - name: "{{ item }}" + name: ["gcc", "gcc-c++", "glibc-devel.x86_64", "openssl-devel", "python-devel", "lapack-devel", "numpy-f2py", "redhat-rpm-config"] state: present become: yes - with_items: - - gcc - - gcc-c++ - - glibc-devel.x86_64 - - openssl-devel - # - atlas-devel - - python-devel - - lapack-devel - - numpy-f2py - # iminuit - - redhat-rpm-config when: ansible_distribution == 'Fedora' - name: "Install Python stack for scientific purposes (Distribution)"