From b087a7c05e29fd522c0af2332be80725e022ea85 Mon Sep 17 00:00:00 2001 From: Miguel Caballer Date: Tue, 19 Nov 2024 09:29:33 +0100 Subject: [PATCH] Add 2to3 package --- files/requirements.txt | 1 + tasks/wn.yml | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/files/requirements.txt b/files/requirements.txt index 00bb059..cc25df9 100644 --- a/files/requirements.txt +++ b/files/requirements.txt @@ -70,6 +70,7 @@ frozenlist==1.4.1 ; python_version >= "3.8" and python_version < "3.13" fs==2.4.16 ; python_version >= "3.8" and python_version < "3.13" fsspec==2024.5.0 ; python_version >= "3.8" and python_version < "3.13" future==1.0.0 ; python_version >= "3.8" and python_version < "3.13" +galaxy-app==24.1.3 ; python_version >= "3.8" and python_version < "3.13" galaxy-sequence-utils==1.1.5 ; python_version >= "3.8" and python_version < "3.13" galaxy2cwl==0.1.4 ; python_version >= "3.8" and python_version < "3.13" graphene-sqlalchemy==3.0.0rc1 ; python_version >= "3.8" and python_version < "3.13" diff --git a/tasks/wn.yml b/tasks/wn.yml index 96cab1c..2fdd9e3 100644 --- a/tasks/wn.yml +++ b/tasks/wn.yml @@ -5,8 +5,12 @@ - name: Link galaxy_env dir file: path=/galaxy_venv src={{galaxy_export_dir}}/galaxy_venv state=link +- name: install 2to3 in Deb systems + apt: name=2to3 update_cache=yes cache_valid_time=3600 + when: ansible_os_family == "Debian" + - name: install Galaxy dependences in Deb systems - apt: name=libz-dev,python3-crypto,2to3 update_cache=yes cache_valid_time=3600 + apt: name=libz-dev,python3-crypto update_cache=yes cache_valid_time=3600 when: ansible_distribution == "Debian" - name: install Galaxy dependences in RedHat systems 7