mirror of
https://github.com/LIV2/amitools.git
synced 2025-12-05 22:22:45 +00:00
8 lines
162 B
Bash
Executable File
8 lines
162 B
Bash
Executable File
#!/bin/bash
|
|
export PYENV_ROOT=$HOME/.pyenv
|
|
export PATH=$PYENV_ROOT/bin:$PATH
|
|
eval "$(pyenv init -)"
|
|
pyenv shell 3.12.5 3.11.4 3.10.9 3.9.16 3.8.16
|
|
exec tox "$@"
|
|
|