File: get-version.sh

package info (click to toggle)
python-ansible-compat 25.1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 656 kB
  • sloc: python: 2,522; sh: 26; makefile: 24
file content (14 lines) | stat: -rwxr-xr-x 377 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash
set -e
{
    python3 -c "import setuptools_scm" >/dev/null || {
    if [[ "$VIRTUAL_ENV" != "" ]]; then
        PIPARGS=""
    else
        PIPARGS="--user"
    fi
        python3 -m pip install $PIPARGS setuptools-scm
    }
} 1>&2  # redirect stdout to stderr to avoid polluting the output
python3 -m setuptools_scm | \
    sed 's/Guessed Version\([^+]\+\).*/\1/'