![]() |
|
|||
File indexing completed on 2025-04-02 07:57:04
0001 #!/bin/bash 0002 set -e 0003 set -u 0004 0005 PYTHON_VERSION=3.13 0006 0007 input=$1 0008 input_abs=$(realpath "$input") 0009 input_rel=$(basename "$input_abs") 0010 dir=$(dirname "$input_abs") 0011 output=requirements.txt 0012 0013 uv python install $PYTHON_VERSION 0014 pushd "$dir" 0015 uv pip compile \ 0016 --python-version $PYTHON_VERSION \ 0017 "$input_rel" \ 0018 -o "$output" 0019 popd
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
![]() ![]() |