Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

19 строки
569 B

  1. #!/usr/bin/env bash
  2. # this script is run by GitHub Actions in a plain `focal` container; it installs the
  3. # minimal requirements for tox and hands over to the py3-old tox environment.
  4. # Prevent tzdata from asking for user input
  5. export DEBIAN_FRONTEND=noninteractive
  6. set -ex
  7. apt-get update
  8. apt-get install -y python3 python3-dev python3-pip libxml2-dev libxslt-dev xmlsec1 zlib1g-dev tox libjpeg-dev libwebp-dev
  9. export LANG="C.UTF-8"
  10. # Prevent virtualenv from auto-updating pip to an incompatible version
  11. export VIRTUALENV_NO_DOWNLOAD=1
  12. exec tox -e py3-old,combine