Commit 3369ae05 authored by Ruben ten Hove's avatar Ruben ten Hove Committed by Federico Falconieri
Browse files

fix: explicitly deprecate pip outdated

parent 7586ec37
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
---
# Checks for dependencies that are not up to date.

# DEPRECATED

python:pip:outdated:
  stage: test
  image: ${CI_REGISTRY_IMAGE}:${CI_COMMIT_REF_NAME}
  variables:
    EXTRA_ARGS: ""
  script:
    - echo "[!] THIS JOB IS DEPRECATED AND NO LONGER MAINTAINED."
    - |
      OUTDATED="$(pip list --outdated --format freeze)"
      if [ ! -z "${OUTDATED}" ]; then