mirror of
https://github.com/LIV2/amitools.git
synced 2025-12-06 06:32:47 +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.11.1 3.10.9 3.9.16 3.8.16 3.7.16
|
|
exec tox "$@"
|
|
|