Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
python_install.yml 379 B
Newer Older
  • Learn to ignore specific revisions
  • .python_install:
        variables:
            IMAGE_TAG: "latest"
            PROJECT_PATH: "."
            PYTHON_SETUP: "pip install -r ${PROJECT_PATH}/requirements.txt"
        script:
            - python --version  # Debug
            - python -m venv venv --upgrade-deps || python -m venv venv  # upgrade-deps is not supported before 3.9
            - source venv/bin/activate
            - ${PYTHON_SETUP}