ebi-ait / ingest-graph-validator

HCA Ingest Service Graph Validation Suite
MIT License
1 stars 0 forks source link

Missing requirement `wheel` #22

Closed rays22 closed 3 years ago

rays22 commented 3 years ago

Describe the bug The file requirements.txt is missing wheel. This results in failure if you do not have already wheel installed or if you install the tool into a virtual environment.

To Reproduce Steps to reproduce the behavior:

  1. Clone the repo.
    git clone git@github.com:ebi-ait/ingest-graph-validator.git
    cd ingest-graph-validator
  2. Set up a virtual environment.
    python3 -m venv venv
    source ./venv/bin/activate
  3. Try to install the tool from the repo.
    pip install .

    Expected behaviour It is expected that the installation of the tool and all of its requirements succeed without any errors.

rays22 commented 3 years ago

This has been fixed by https://github.com/ebi-ait/ingest-graph-validator/pull/23 .