mirror of
https://github.com/LIV2/amitools.git
synced 2025-12-05 22:22:45 +00:00
8 lines
161 B
Bash
Executable File
8 lines
161 B
Bash
Executable File
#!/bin/bash
|
|
export PYENV_ROOT=$HOME/.pyenv
|
|
export PATH=$PYENV_ROOT/bin:$PATH
|
|
eval "$(pyenv init -)"
|
|
pyenv shell 3.10.1 3.9.9 3.8.12 3.7.12 3.6.15
|
|
exec tox "$@"
|
|
|