Closed yarikoptic closed 3 years ago
@yarikoptic - i've recreated the issue... not sure when I broke it, but will fix it
cli
just didn't work correctly for relative paths... I forgot about it, since i usually use tests to run, not cli. #104 should fix it
testkraken workflows4regtests/basic_examples/sorting_array_conda/
```bash (git)lena:~/proj/repronim/testkraken[master]git $> TMPDIR=/tmp testkraken workflows4regtests/basic_examples/sorting_array_conda/ running testkraken for workflows4regtests/basic_examples/sorting_array_conda/; working directory - None + building 4 Docker images ++ building image: {'pkg_manager': 'apt', 'instructions': (('base', 'debian:stretch'), ('miniconda', {'create_env': 'testkraken', 'activate': True, 'conda_install': ['python=3.7', 'numpy']}))} Sending build context to Docker daemon 5.632kB Step 1/9 : FROM debian:stretch ---> 62ace29a8c8f Step 2/9 : USER root ---> Using cache ---> 0a0242cabb6b Step 3/9 : ARG DEBIAN_FRONTEND="noninteractive" ---> Using cache ---> 9b5957f75547 Step 4/9 : ENV LANG="en_US.UTF-8" LC_ALL="en_US.UTF-8" ND_ENTRYPOINT="/neurodocker/startup.sh" ---> Using cache ---> ee7c9c814662 Step 5/9 : RUN export ND_ENTRYPOINT="/neurodocker/startup.sh" && apt-get update -qq && apt-get install -y -q --no-install-recommends apt-utils bzip2 ca-certificates curl locales unzip && apt-get clean && rm -rf /var/lib/apt/lists/* && sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG="en_US.UTF-8" && chmod 777 /opt && chmod a+s /opt && mkdir -p /neurodocker && if [ ! -f "$ND_ENTRYPOINT" ]; then echo '#!/usr/bin/env bash' >> "$ND_ENTRYPOINT" && echo 'set -e' >> "$ND_ENTRYPOINT" && echo 'export USER="${USER:=`whoami`}"' >> "$ND_ENTRYPOINT" && echo 'if [ -n "$1" ]; then "$@"; else /usr/bin/env bash; fi' >> "$ND_ENTRYPOINT"; fi && chmod -R 777 /neurodocker && chmod a+s /neurodocker ---> Using cache ---> 2ffd82e60498 Step 6/9 : ENTRYPOINT ["/neurodocker/startup.sh"] ---> Using cache ---> fe1ff4b56fc6 Step 7/9 : ENV CONDA_DIR="/opt/miniconda-latest" PATH="/opt/miniconda-latest/bin:$PATH" ---> Using cache ---> 98366a65c3c5 Step 8/9 : RUN export PATH="/opt/miniconda-latest/bin:$PATH" && echo "Downloading Miniconda installer ..." && conda_installer="/tmp/miniconda.sh" && curl -fsSL --retry 5 -o "$conda_installer" https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh && bash "$conda_installer" -b -p /opt/miniconda-latest && rm -f "$conda_installer" && conda update -yq -nbase conda && conda config --system --prepend channels conda-forge && conda config --system --set auto_update_conda false && conda config --system --set show_channel_urls true && sync && conda clean -y --all && sync && conda create -y -q --name testkraken && conda install -y -q --name testkraken "python=3.7" "numpy" && sync && conda clean -y --all && sync && sed -i '$isource activate testkraken' $ND_ENTRYPOINT ---> Using cache ---> 2ba6c3b37b85 Step 9/9 : RUN echo '{ \n "pkg_manager": "apt", \n "instructions": [ \n [ \n "base", \n "debian:stretch" \n ], \n [ \n "miniconda", \n { \n "create_env": "testkraken", \n "activate": true, \n "conda_install": [ \n "python=3.7", \n "numpy" \n ] \n } \n ] \n ] \n}' > /neurodocker/neurodocker_specs.json ---> Using cache ---> b4eadc75d43d Successfully built b4eadc75d43d Successfully tagged repronim/testkraken:234897b2e41f47658e94c800426e2ae70bbc947d ++ building image: {'pkg_manager': 'apt', 'instructions': (('base', 'debian:stretch'), ('miniconda', {'create_env': 'testkraken', 'activate': True, 'conda_install': ['python=2.7', 'numpy']}))} Sending build context to Docker daemon 10.24kB Step 1/9 : FROM debian:stretch ---> 62ace29a8c8f Step 2/9 : USER root ---> Using cache ---> 0a0242cabb6b Step 3/9 : ARG DEBIAN_FRONTEND="noninteractive" ---> Using cache ---> 9b5957f75547 Step 4/9 : ENV LANG="en_US.UTF-8" LC_ALL="en_US.UTF-8" ND_ENTRYPOINT="/neurodocker/startup.sh" ---> Using cache ---> ee7c9c814662 Step 5/9 : RUN export ND_ENTRYPOINT="/neurodocker/startup.sh" && apt-get update -qq && apt-get install -y -q --no-install-recommends apt-utils bzip2 ca-certificates curl locales unzip && apt-get clean && rm -rf /var/lib/apt/lists/* && sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG="en_US.UTF-8" && chmod 777 /opt && chmod a+s /opt && mkdir -p /neurodocker && if [ ! -f "$ND_ENTRYPOINT" ]; then echo '#!/usr/bin/env bash' >> "$ND_ENTRYPOINT" && echo 'set -e' >> "$ND_ENTRYPOINT" && echo 'export USER="${USER:=`whoami`}"' >> "$ND_ENTRYPOINT" && echo 'if [ -n "$1" ]; then "$@"; else /usr/bin/env bash; fi' >> "$ND_ENTRYPOINT"; fi && chmod -R 777 /neurodocker && chmod a+s /neurodocker ---> Using cache ---> 2ffd82e60498 Step 6/9 : ENTRYPOINT ["/neurodocker/startup.sh"] ---> Using cache ---> fe1ff4b56fc6 Step 7/9 : ENV CONDA_DIR="/opt/miniconda-latest" PATH="/opt/miniconda-latest/bin:$PATH" ---> Using cache ---> 98366a65c3c5 Step 8/9 : RUN export PATH="/opt/miniconda-latest/bin:$PATH" && echo "Downloading Miniconda installer ..." && conda_installer="/tmp/miniconda.sh" && curl -fsSL --retry 5 -o "$conda_installer" https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh && bash "$conda_installer" -b -p /opt/miniconda-latest && rm -f "$conda_installer" && conda update -yq -nbase conda && conda config --system --prepend channels conda-forge && conda config --system --set auto_update_conda false && conda config --system --set show_channel_urls true && sync && conda clean -y --all && sync && conda create -y -q --name testkraken && conda install -y -q --name testkraken "python=2.7" "numpy" && sync && conda clean -y --all && sync && sed -i '$isource activate testkraken' $ND_ENTRYPOINT ---> Using cache ---> bfdb2b751cc6 Step 9/9 : RUN echo '{ \n "pkg_manager": "apt", \n "instructions": [ \n [ \n "base", \n "debian:stretch" \n ], \n [ \n "miniconda", \n { \n "create_env": "testkraken", \n "activate": true, \n "conda_install": [ \n "python=2.7", \n "numpy" \n ] \n } \n ] \n ] \n}' > /neurodocker/neurodocker_specs.json ---> Using cache ---> 925853be21ab Successfully built 925853be21ab Successfully tagged repronim/testkraken:2cada4cd32e2ba3c8ecf1a6d62c4720cdd8a6360 ++ building image: {'pkg_manager': 'apt', 'instructions': (('base', 'ubuntu:16.04'), ('miniconda', {'create_env': 'testkraken', 'activate': True, 'conda_install': ['python=3.7', 'numpy']}))} Sending build context to Docker daemon 14.85kB Step 1/9 : FROM ubuntu:16.04 ---> 8185511cd5ad Step 2/9 : USER root ---> Using cache ---> 2a3b6e5207f5 Step 3/9 : ARG DEBIAN_FRONTEND="noninteractive" ---> Using cache ---> 3c2377d387ef Step 4/9 : ENV LANG="en_US.UTF-8" LC_ALL="en_US.UTF-8" ND_ENTRYPOINT="/neurodocker/startup.sh" ---> Using cache ---> b6bc7f5e5771 Step 5/9 : RUN export ND_ENTRYPOINT="/neurodocker/startup.sh" && apt-get update -qq && apt-get install -y -q --no-install-recommends apt-utils bzip2 ca-certificates curl locales unzip && apt-get clean && rm -rf /var/lib/apt/lists/* && sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG="en_US.UTF-8" && chmod 777 /opt && chmod a+s /opt && mkdir -p /neurodocker && if [ ! -f "$ND_ENTRYPOINT" ]; then echo '#!/usr/bin/env bash' >> "$ND_ENTRYPOINT" && echo 'set -e' >> "$ND_ENTRYPOINT" && echo 'export USER="${USER:=`whoami`}"' >> "$ND_ENTRYPOINT" && echo 'if [ -n "$1" ]; then "$@"; else /usr/bin/env bash; fi' >> "$ND_ENTRYPOINT"; fi && chmod -R 777 /neurodocker && chmod a+s /neurodocker ---> Using cache ---> ade3705946fa Step 6/9 : ENTRYPOINT ["/neurodocker/startup.sh"] ---> Using cache ---> a78a1f23f03e Step 7/9 : ENV CONDA_DIR="/opt/miniconda-latest" PATH="/opt/miniconda-latest/bin:$PATH" ---> Using cache ---> bb15a06fc1d4 Step 8/9 : RUN export PATH="/opt/miniconda-latest/bin:$PATH" && echo "Downloading Miniconda installer ..." && conda_installer="/tmp/miniconda.sh" && curl -fsSL --retry 5 -o "$conda_installer" https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh && bash "$conda_installer" -b -p /opt/miniconda-latest && rm -f "$conda_installer" && conda update -yq -nbase conda && conda config --system --prepend channels conda-forge && conda config --system --set auto_update_conda false && conda config --system --set show_channel_urls true && sync && conda clean -y --all && sync && conda create -y -q --name testkraken && conda install -y -q --name testkraken "python=3.7" "numpy" && sync && conda clean -y --all && sync && sed -i '$isource activate testkraken' $ND_ENTRYPOINT ---> Using cache ---> 5daada26bbb2 Step 9/9 : RUN echo '{ \n "pkg_manager": "apt", \n "instructions": [ \n [ \n "base", \n "ubuntu:16.04" \n ], \n [ \n "miniconda", \n { \n "create_env": "testkraken", \n "activate": true, \n "conda_install": [ \n "python=3.7", \n "numpy" \n ] \n } \n ] \n ] \n}' > /neurodocker/neurodocker_specs.json ---> Using cache ---> 7fbe88d9f5aa Successfully built 7fbe88d9f5aa Successfully tagged repronim/testkraken:12511be05fce231bc8e6048494c3c6a9bb996e60 ++ building image: {'pkg_manager': 'apt', 'instructions': (('base', 'ubuntu:16.04'), ('miniconda', {'create_env': 'testkraken', 'activate': True, 'conda_install': ['python=2.7', 'numpy']}))} Sending build context to Docker daemon 19.46kB Step 1/9 : FROM ubuntu:16.04 ---> 8185511cd5ad Step 2/9 : USER root ---> Using cache ---> 2a3b6e5207f5 Step 3/9 : ARG DEBIAN_FRONTEND="noninteractive" ---> Using cache ---> 3c2377d387ef Step 4/9 : ENV LANG="en_US.UTF-8" LC_ALL="en_US.UTF-8" ND_ENTRYPOINT="/neurodocker/startup.sh" ---> Using cache ---> b6bc7f5e5771 Step 5/9 : RUN export ND_ENTRYPOINT="/neurodocker/startup.sh" && apt-get update -qq && apt-get install -y -q --no-install-recommends apt-utils bzip2 ca-certificates curl locales unzip && apt-get clean && rm -rf /var/lib/apt/lists/* && sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG="en_US.UTF-8" && chmod 777 /opt && chmod a+s /opt && mkdir -p /neurodocker && if [ ! -f "$ND_ENTRYPOINT" ]; then echo '#!/usr/bin/env bash' >> "$ND_ENTRYPOINT" && echo 'set -e' >> "$ND_ENTRYPOINT" && echo 'export USER="${USER:=`whoami`}"' >> "$ND_ENTRYPOINT" && echo 'if [ -n "$1" ]; then "$@"; else /usr/bin/env bash; fi' >> "$ND_ENTRYPOINT"; fi && chmod -R 777 /neurodocker && chmod a+s /neurodocker ---> Using cache ---> ade3705946fa Step 6/9 : ENTRYPOINT ["/neurodocker/startup.sh"] ---> Using cache ---> a78a1f23f03e Step 7/9 : ENV CONDA_DIR="/opt/miniconda-latest" PATH="/opt/miniconda-latest/bin:$PATH" ---> Using cache ---> bb15a06fc1d4 Step 8/9 : RUN export PATH="/opt/miniconda-latest/bin:$PATH" && echo "Downloading Miniconda installer ..." && conda_installer="/tmp/miniconda.sh" && curl -fsSL --retry 5 -o "$conda_installer" https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh && bash "$conda_installer" -b -p /opt/miniconda-latest && rm -f "$conda_installer" && conda update -yq -nbase conda && conda config --system --prepend channels conda-forge && conda config --system --set auto_update_conda false && conda config --system --set show_channel_urls true && sync && conda clean -y --all && sync && conda create -y -q --name testkraken && conda install -y -q --name testkraken "python=2.7" "numpy" && sync && conda clean -y --all && sync && sed -i '$isource activate testkraken' $ND_ENTRYPOINT ---> Using cache ---> d128b936699c Step 9/9 : RUN echo '{ \n "pkg_manager": "apt", \n "instructions": [ \n [ \n "base", \n "ubuntu:16.04" \n ], \n [ \n "miniconda", \n { \n "create_env": "testkraken", \n "activate": true, \n "conda_install": [ \n "python=2.7", \n "numpy" \n ] \n } \n ] \n ] \n}' > /neurodocker/neurodocker_specs.json ---> Using cache ---> d492f69648ea Successfully built d492f69648ea Successfully tagged repronim/testkraken:07f17664156187d5c24965c5d258c80f77b815e4 running pydra workflow for workflows4regtests/basic_examples/sorting_array_conda in working directory - /tmp/testkraken-sorting_array_condagxfd_b50 Task exception was never retrieved future:pip list
```shell Package Version Location ------------------------------------------------ ----------------------- ---------------------------------- adal 1.2.2 aiohttp 3.6.2 alabaster 0.7.8 altair 4.1.0 annexremote 1.4.3 ansible 2.9.16 apache-libcloud 3.2.0 apipkg 1.5 appdirs 1.4.4 apsw 3.32.2.post1 arcp 0.2.1 argcomplete 1.8.1 argon2-cffi 18.3.0 arrow 0.17.0 asciinema 2.0.2 asgiref 3.3.0 asn1crypto 1.4.0 astroid 2.4.2 async-timeout 3.0.1 atomicwrites 1.4.0 attrs 20.3.0 Automat 20.2.0 avro-python3 1.10.1 awscli 1.18.135 azure-ai-anomalydetector 3.0.0b2 azure-ai-formrecognizer 3.1.0b2 azure-ai-metricsadvisor 1.0.0b3 azure-ai-textanalytics 5.1.0b4 azure-appconfiguration 1.1.2 azure-applicationinsights 0.1.0 azure-batch 9.0.1 azure-cognitiveservices-anomalydetector 0.3.0 azure-cognitiveservices-formrecognizer 0.1.1 azure-cognitiveservices-knowledge-qnamaker 0.3.0 azure-cognitiveservices-language-luis 0.7.0 azure-cognitiveservices-language-spellcheck 2.0.0 azure-cognitiveservices-language-textanalytics 0.2.0 azure-cognitiveservices-personalizer 0.1.0 azure-cognitiveservices-search-autosuggest 0.2.0 azure-cognitiveservices-search-customimagesearch 0.2.0 azure-cognitiveservices-search-customsearch 0.3.0 azure-cognitiveservices-search-entitysearch 2.0.0 azure-cognitiveservices-search-imagesearch 2.0.0 azure-cognitiveservices-search-newssearch 2.0.0 azure-cognitiveservices-search-videosearch 2.0.0 azure-cognitiveservices-search-visualsearch 0.2.0 azure-cognitiveservices-search-websearch 2.0.0 azure-cognitiveservices-vision-computervision 0.7.0 azure-cognitiveservices-vision-contentmoderator 1.0.0 azure-cognitiveservices-vision-customvision 3.1.0 azure-cognitiveservices-vision-face 0.4.1 azure-common 1.1.27 azure-communication-administration 1.0.0b4 azure-communication-chat 1.0.0b4 azure-communication-sms 1.0.0b5 azure-core 1.9.1 azure-data-tables 12.0.0b4 azure-digitaltwins-core 1.1.0 azure-eventgrid 2.0.0b5 azure-eventhub 5.2.1 azure-eventhub-checkpointstoreblob 1.1.2 azure-eventhub-checkpointstoreblob-aio 1.1.2 azure-graphrbac 0.61.1 azure-identity 1.5.1 azure-keyvault 4.1.0 azure-keyvault-administration 4.0.0b3 azure-keyvault-certificates 4.2.2 azure-keyvault-keys 4.3.2 azure-keyvault-secrets 4.2.1 azure-loganalytics 0.1.0 azure-mgmt-advisor 9.0.0b1 azure-mgmt-alertsmanagement 1.0.0b1 azure-mgmt-apimanagement 1.0.0b1 azure-mgmt-appconfiguration 1.0.1 azure-mgmt-applicationinsights 0.3.1 azure-mgmt-appplatform 6.0.0b1 azure-mgmt-attestation 0.2.0 azure-mgmt-authorization 1.0.0 azure-mgmt-automanage 1.0.0b1 azure-mgmt-automation 1.0.0b1 azure-mgmt-azurestack 0.1.0 azure-mgmt-baremetalinfrastructure 1.0.0b1 azure-mgmt-batch 14.0.0b1 azure-mgmt-billing 6.0.0b1 azure-mgmt-botservice 0.2.0 azure-mgmt-cdn 10.0.0b1 azure-mgmt-cognitiveservices 11.0.0b1 azure-mgmt-commerce 6.0.0b1 azure-mgmt-communication 1.0.0b5 azure-mgmt-compute 18.0.0 azure-mgmt-confluent 1.0.0b1 azure-mgmt-consumption 8.0.0b1 azure-mgmt-containerinstance 7.0.0 azure-mgmt-containerregistry 8.0.0b1 azure-mgmt-containerservice 14.0.0 azure-mgmt-core 1.2.3 azure-mgmt-cosmosdb 6.0.0 azure-mgmt-costmanagement 0.2.0 azure-mgmt-customproviders 1.0.0b1 azure-mgmt-databox 1.0.0b1 azure-mgmt-databoxedge 1.0.0b1 azure-mgmt-databricks 1.0.0b1 azure-mgmt-datadog 1.0.0b2 azure-mgmt-datafactory 1.0.0b1 azure-mgmt-datalake-analytics 0.6.0 azure-mgmt-datalake-store 1.0.0b1 azure-mgmt-datamigration 4.0.0 azure-mgmt-datashare 1.0.0b1 azure-mgmt-deploymentmanager 1.0.0b1 azure-mgmt-devspaces 0.2.0 azure-mgmt-devtestlabs 9.0.0b1 azure-mgmt-digitaltwins 0.1.0 azure-mgmt-dns 3.0.0 azure-mgmt-documentdb 0.1.3 azure-mgmt-edgegateway 0.1.0 azure-mgmt-eventgrid 8.0.0b1 azure-mgmt-eventhub 8.0.0 azure-mgmt-frontdoor 0.3.0 azure-mgmt-hanaonazure 1.0.0b1 azure-mgmt-hdinsight 7.0.0b1 azure-mgmt-healthcareapis 1.0.0b1 azure-mgmt-hybridcompute 7.0.0b1 azure-mgmt-hybridkubernetes 0.1.0 azure-mgmt-imagebuilder 0.4.0 azure-mgmt-iotcentral 3.0.0 azure-mgmt-iothub 1.0.0b1 azure-mgmt-iothubprovisioningservices 0.2.0 azure-mgmt-keyvault 8.0.0 azure-mgmt-kubernetesconfiguration 0.2.0 azure-mgmt-kusto 1.0.0b1 azure-mgmt-labservices 1.0.0b1 azure-mgmt-loganalytics 7.0.0b1 azure-mgmt-logic 9.0.0b1 azure-mgmt-machinelearningcompute 0.4.1 azure-mgmt-machinelearningservices 1.0.0b1 azure-mgmt-maintenance 1.0.0b1 azure-mgmt-managedservices 6.0.0b1 azure-mgmt-managementgroups 0.2.0 azure-mgmt-managementpartner 0.1.1 azure-mgmt-maps 1.0.0b1 azure-mgmt-marketplaceordering 1.0.0b1 azure-mgmt-media 2.2.0 azure-mgmt-mixedreality 0.1.0 azure-mgmt-monitor 1.0.1 azure-mgmt-msi 1.0.0 azure-mgmt-netapp 1.0.0b1 azure-mgmt-network 17.0.0 azure-mgmt-notificationhubs 7.0.0b1 azure-mgmt-operationsmanagement 1.0.0b1 azure-mgmt-peering 1.0.0b1 azure-mgmt-policyinsights 1.0.0b1 azure-mgmt-powerbidedicated 1.0.0b1 azure-mgmt-powerbiembedded 2.0.0 azure-mgmt-privatedns 0.1.0 azure-mgmt-rdbms 8.0.0b1 azure-mgmt-recoveryservices 1.0.0b1 azure-mgmt-recoveryservicesbackup 0.7.0 azure-mgmt-redhatopenshift 0.1.0 azure-mgmt-redis 12.0.0 azure-mgmt-regionmove 1.0.0b1 azure-mgmt-relay 1.0.0b1 azure-mgmt-reservations 0.7.0 azure-mgmt-resource 15.0.0 azure-mgmt-resourcegraph 7.0.0b1 azure-mgmt-resourcemover 1.0.1b1 azure-mgmt-scheduler 7.0.0b1 azure-mgmt-search 8.0.0b1 azure-mgmt-security 1.0.0b1 azure-mgmt-securityinsight 1.0.0b1 azure-mgmt-serialconsole 0.1.0 azure-mgmt-servermanager 2.0.0 azure-mgmt-servicebus 6.0.0 azure-mgmt-servicefabric 0.4.0 azure-mgmt-signalr 1.0.0b1 azure-mgmt-sql 1.0.0 azure-mgmt-sqlvirtualmachine 0.5.0 azure-mgmt-storage 16.0.0 azure-mgmt-storagecache 0.3.0 azure-mgmt-storageimportexport 0.1.0 azure-mgmt-storagesync 0.2.0 azure-mgmt-streamanalytics 1.0.0rc1 azure-mgmt-subscription 1.0.0b1 azure-mgmt-support 6.0.0b1 azure-mgmt-synapse 0.2.0 azure-mgmt-timeseriesinsights 0.2.0 azure-mgmt-trafficmanager 0.51.0 azure-mgmt-vmwarecloudsimple 0.2.0 azure-mgmt-web 1.0.0 azure-mgmt-workloadmonitor 1.0.0b2 azure-schemaregistry 1.0.0b2 azure-schemaregistry-avroserializer 1.0.0b2 azure-search-documents 11.1.0b5 azure-servicebus 7.0.1 azure-servicefabric 7.2.0.46 azure-servicemanagement-legacy 0.20.7 azure-storage-blob 12.7.0b1 azure-storage-blob-changefeed 12.0.0b3 azure-storage-file-datalake 12.2.1 azure-storage-file-share 12.4.0b1 azure-storage-queue 12.1.5 azure-synapse 0.1.0 azure-synapse-accesscontrol 0.4.0 azure-synapse-artifacts 0.4.0 azure-synapse-managedprivateendpoints 0.1.0 azure-synapse-monitoring 0.1.0 azure-synapse-spark 0.4.0 azure-template 0.0.18b3 Babel 2.8.0 backcall 0.2.0 base58 1.0.3 bcrypt 3.1.7 beautifulsoup4 4.9.3 binaryornot 0.4.3 binwalk 2.2.0 biopython 1.78 black 20.8b1 bleach 3.2.1 blessings 1.6 blinker 1.4 blosc 1.8.1 boto 2.49.0 boto3 1.13.14 botocore 1.17.22 bottle 0.12.15 Bottleneck 1.2.1 breezy 3.1.0 Brlapi 0.8.0 Brotli 1.0.9 brz-etckeeper 0.0.0 bsddb3 6.2.9 bz2file 0.98 CacheControl 0.12.6 cached-property 1.5.2 cachetools 4.2.0 catfish 1.4.13 certifi 2020.6.20 chardet 4.0.0 Charon 1.0 chrome-gnome-shell 0.0.0 ci-info 0.2.0 citeproc-py 0.5.1 cliapp 1.20180812.1 click 7.1.2 cloudpickle 1.6.0 cmarkgfm 0.4.2 cmdtest 0.32+git colorama 0.4.4 coloredlogs 7.3 commonmark 0.9.1 ConfigArgParse 0.13.0 configobj 5.0.6 constantly 15.1.0 contextlib2 0.6.0.post1 cookiecutter 1.6.0 coverage 5.1 crit 0.0.1 cryptography 3.2.1 css-parser 1.0.6 cssselect 1.1.0 cssutils 1.0.2 cupshelpers 1.0 cvxopt 1.2.5 cwltool 3.0.20200807132242 cycler 0.10.0 Cython 0.29.21 dask 2.11.0+dfsg datalad 0.14.0 datrie 0.8.2 dblatex 0.3.12 dbus-python 1.2.16 dcmstack 0.8.0 decorator 4.4.2 defusedxml 0.6.0 Deprecated 1.2.10 deprecation 2.0.7 devscripts 2.20.5 diffoscope 163 distlib 0.3.1 distro 1.5.0 distro-info 0.24 dnspython 2.0.0 docker 4.1.0 docker-compose 1.25.0 dockerpty 0.4.1 docopt 0.6.2 docutils 0.16 doit 0.31.1 drmaa 0.7.9 dropbox 10.10.0 duecredit 0.8.0.debian1 dulwich 0.20.8 EditorConfig 0.12.2 enjarify 1.0.3 entrypoints 0.3 et-xmlfile 1.0.1 etelemetry 0.2.2 execnet 1.7.1 ExifRead 2.3.2 fabric 2.5.0 fasteners 0.14.1 fastimport 0.9.8 feedgenerator 1.9 feedparser 5.2.1 filelock 3.0.12 flake8 3.8.4 Flask 1.1.2 Frozen-Flask 0.11 fslpy 3.0.1 fsspec 0.8.4 ftputil 3.4 funcsigs 1.0.2 fuse-python 1.0.2 future 0.18.2 gbp 0.9.20 gcalcli 4.3.0 GDAL 3.2.0 gitdb 4.0.5 GitPython 3.1.11 Glances 3.1.5 google-api-python-client 1.7.11 google-auth 1.5.1 google-auth-httplib2 0.0.4 gpg 1.14.0-unknown gssapi 1.6.1 gyp 0.1 h11 0.12.0 h2 4.0.0 h5py 2.10.0 h5py.-debian-h5py-serial 2.10.0 hdmf 2.3.0 hpack 4.0.0 html2text 2020.1.16 html5-parser 0.4.9 html5lib 1.1 httpie 2.2.0 httplib2 0.18.1 httpretty 0.9.5 humanfriendly 8.2 humanize 0.0.0 hyperframe 6.0.0 hyperlink 19.0.0 hypothesis 5.41.2 idna 2.10 ifaddr 0.1.6 imageio 2.4.1 imagesize 1.2.0 importlib-metadata 1.6.0 incremental 17.5.0 influxdb 5.2.3 invoke 1.4.1 iotop 0.6 ipykernel 5.4.2 ipython 7.19.0 ipython-genutils 0.2.0 ipywidgets 6.0.0 iso8601 0.1.13 isodate 0.6.0 isort 5.6.4 itemadapter 0.2.0 itemloaders 1.0.4 itsdangerous 1.1.0 jdcal 1.0 jedi 0.17.0 jeepney 0.6.0 Jinja2 2.11.2 jinja2-time 0.2.0 jmespath 0.10.0 joblib 0.17.0 jsbeautifier 1.13.0 jsmin 2.2.2 jsondiff 1.1.1 jsonschema 3.2.0 jupyter-client 6.1.6 jupyter-core 4.7.0 kaitaistruct 0.8 keyring 21.5.0 keyrings.alt 4.0.1 kiwisolver 1.3.1 kubernetes 12.0.1 launchpadlib 1.10.13 lazr.restfulclient 0.14.2 lazr.uri 1.0.5 lazy-object-proxy 1.5.1 ldap3 2.8.1 libarchive-c 2.9 libevdev 0.5 linecache2 1.0.0 livereload 2.6.3 locket 0.2.0 lockfile 0.12.2 logilab-common 1.8.0 louis 3.16.0 lxml 4.6.2 lz4 3.1.1+dfsg m2r 0.2.1 Mako 1.1.3 Markdown 3.3.3 MarkupSafe 1.1.1 matplotlib 3.3.2 mccabe 0.6.1 MDP 3.6 mechanize 0.4.5 meld 3.20.2 mercurial 5.5.2 microsoft-opentelemetry-exporter-azuremonitor 1.0.0b1 mistune 0.8.4 mitmproxy 6.0.2 mkdocs 1.1.2 mock 4.0.2 monotonic 1.5 more-itertools 4.2.0 mpi4py 3.0.3 mpmath 1.1.0 msal 1.8.0 msal-extensions 0.3.0 msgpack 1.0.0 msrest 0.6.18 msrestazure 0.6.2 multidict 5.0.0 mutagen 1.45.1 mypy 0.790 mypy-extensions 0.4.3 mysqlclient 1.4.4 nbconvert 5.6.1 nbformat 5.0.8 nbsphinx 0.8.0 netaddr 0.7.19 netifaces 0.10.9 networkx 2.5 neurodocker 0.7.0 nibabel 3.1.1 nipype 1.6.0 nitime 0.8.1 nose 1.3.7 nose2 0.9.2 notebook 6.1.5 ntlm-auth 1.4.0 Nuitka 0.6.10.1 numexpr 2.7.1 numpy 1.19.5 numpy-stl 2.8.0 numpydoc 1.1.0 oauth2client 4.1.2 oauthlib 3.1.0 odfpy 1.4.1 olefile 0.46 openpyxl 3.0.3 packaging 20.4 pandas 1.1.5 pandocfilters 1.4.2 paramiko 2.7.2 parsedatetime 2.6 parsel 1.6.0 parso 0.7.0 partd 1.0.0 passlib 1.7.2 pathspec 0.8.0 patiencediff 0.2.1 patool 1.12 patsy 0.5.1 pbr 5.5.0 pdfminer.six 20200726 pelican 4.0.1 pexpect 4.6.0 pickleshare 0.7.5 Pillow 8.0.1 pip 20.1.1 pipenv 11.9.0 Pivy 0.6.5 pkg-resources 0.0.0 pkgconfig 1.5.1 pkginfo 1.4.2 pluggy 0.13.0 ply 3.11 portalocker 2.0.0 pprofile 2.0.2 prettytable 0.7.2 progressbar 2.5 prometheus-client 0.7.1 prompt-toolkit 3.0.8 Protego 0.1.16 protobuf 3.12.3 prov 1.5.2 psutil 5.7.3 psycopg2 2.8.5 publicsuffix2 2.20191221 PuLP 1.6.0 pure-sasl 0.5.1 py 1.9.0 pyasn1 0.4.8 pyasn1-modules 0.2.1 pybind11 2.6.2 pycairo 1.16.2 pychm 0.8.6 pycodestyle 2.6.0 pycrypto 2.6.1 pycryptodomex 3.9.7 pycups 2.0.1 pycurl 7.43.0.6 pydantic 1.7.3 pydicom 2.0.0 PyDispatcher 2.0.5 pydot 1.4.1 pydotplus 2.0.2 pydra 0.14.1 pyfakefs 4.1.0 pyflakes 2.2.0 pygame 1.9.6 PyGithub 1.43.7 Pygments 2.7.1 PyGObject 3.38.0 pygraphviz 1.6 PyHamcrest 1.9.0 PyICU 2.5 pyinotify 0.9.6 PyJWT 1.7.1 pykerberos 1.1.14 pylint 2.6.0 Pymacs 0.25 PyNaCl 1.4.0 pynwb 1.2.1 PyOpenGL 3.1.5 pyOpenSSL 20.0.1 pypandoc 1.5 pyparsing 2.4.7 PyPDF2 1.26.0 pyperclip 1.8.0 PyQt5 5.15.2 PyQt5-sip 12.8.1 pyqtgraph 0.11.0 PyQtWebEngine 5.15.2 pyrsistent 0.15.5 pyserial 3.5b0 PySimpleSOAP 1.16.2 pysmbc 1.0.23 pysmi 0.3.2 pysnmp 4.4.12 pystache 0.5.4 pytest 4.6.11 pytest-forked 1.3.0 pytest-runner 2.11.1 pytest-timeout 1.4.1 pytest-xdist 1.32.0 python-apt 2.1.7 python-dateutil 2.8.1 python-debian 0.1.39 python-debianbts 3.1.0 python-gitlab 2.5.0 python-irodsclient 0.8.1 python-magic 0.4.16 python-utils 2.2.0 python-xmp-toolkit 2.0.1 pytz 2020.4 pyudev 0.22.0 PyWavelets 1.1.1 pywinrm 0.3.0 pyxattr 0.7.2 pyxdg 0.26 PyYAML 5.3.1 pyzmq 20.0.0 QtPy 1.9.0 quantities 0.12.4 queuelib 1.5.0 ratelimiter 1.2.0.post0 rdflib 4.2.2 rdflib-jsonld 0.5.0 readme-renderer 24.0 recollchm 0.8.4.1+git redis 3.3.11 regex 2020.7.14 reportbug 7.8.0 reportlab 3.5.56 repoze.lru 0.7 requests 2.25.1 requests-kerberos 0.12.0 requests-ntlm 1.1.0 requests-oauthlib 1.0.0 requests-toolbelt 0.8.0 responses 0.12.1 rfc3986 1.4.0 rich 8.0.0 rnc2rng 2.6.4 roman 2.0.0 Routes 2.4.1 rply 0.7.7 rpm 4.14.2.1 rpy2 3.3.6 rq 1.5.2 rsa 4.0 ruamel.yaml 0.16.12 ruamel.yaml.clib 0.2.2 s3cmd 2.1.0 s3transfer 0.3.3 schema-salad 7.0.20200811075006 scikit-image 0.17.2 scikit-learn 0.23.2 scipy 1.6.1 SCons 4.0.1 scour 0.38.2 Scrapy 2.4.1 screenkey 1.2 seaborn 0.10.1 SecretStorage 3.3.0 selenium 4.0.0a1 selinux 3.1 semantic-version 2.8.5 semver 2.10.2 Send2Trash 1.5.0 service-identity 18.1.0 setproctitle 1.2.1 setuptools 44.0.0 setuptools-scm 5.0.1 Shapely 1.7.1 shellescape 3.4.1 simplejson 3.17.0 sip 4.19.24 six 1.15.0 smmap 3.0.4 snakemake 5.24.1 snowballstemmer 2.0.0 socketIO-client 0.6.5 sortedcontainers 2.1.0 soupsieve 2.1 SPARQLWrapper 1.8.5 Sphinx 3.3.1 sphinx-argparse 0.2.2 sphinx-gallery 0.8.1 sphinx-rtd-theme 0.5.0 sphinxcontrib-apidoc 0.3.0 SQLAlchemy 1.3.20 statsmodels 0.12.1 stdeb 0.8.5 sympy 1.7.1 tables 3.6.1 terminado 0.9.1 testkraken 0.1.5+22.g68a1d5b.dirty /home/yoh/proj/repronim/testkraken testpath 0.4.4 texext 0.6.6 texttable 1.6.3 tifffile 2018.11.28 tlsh 0.2.0 toml 0.10.1 toolz 0.9.0 toposort 1.5 tornado 6.1 tox 3.15.1 tqdm 4.51.0 traceback2 1.4.0 traitlets 5.0.5 traits 5.2.0 ttystatus 0.38 twine 3.2.0 Twisted 20.3.0 typed-ast 1.4.1 typing-extensions 3.7.4.3 tzlocal 2.1 uamqp 1.2.12 unattended-upgrades 0.1 Unidecode 1.1.2 unidiff 0.5.5 unittest2 1.1.0 uritemplate 0.6 urllib3 1.25.11 urwid 2.1.2 uvloop 0.14.0 vboxapi 1.0 vcrpy 4.0.2 virtualenv 20.3.1+ds virtualenv-clone 0.3.0 vmdb2 0.22 vobject 0.9.6.1 w3lib 1.22.0 wadllib 1.3.4 wcwidth 0.1.9 webencodings 0.5.1 WebOb 1.8.6 websocket-client 0.57.0 Werkzeug 1.0.1 wget 3.2 wheel 0.34.2 whichcraft 0.4.1 Whoosh 2.7.4 widgetsnbextension 2.0.0 wrapt 1.12.1 wsproto 0.15.0 wxPython 4.0.7 xarray 0.16.1 xlrd 1.1.0 XlsxWriter 1.1.2 xlwt 1.3.0 xmltodict 0.12.0 xonsh 0.9.24 yamllint 1.24.2 yappi 1.0 yarl 1.4.2 youtube-dl 2020.11.29 zeroconf 0.26.1 zipp 1.0.0 zope.interface 5.1.2 ```