├── .github └── CODEOWNERS ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── bin ├── help.config ├── help.links ├── help.overview ├── install ├── list-all ├── list-legacy-filenames └── utils.sh ├── renovate.json └── shims └── pip /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-community/asdf-python/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-community/asdf-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-community/asdf-python/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-community/asdf-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-community/asdf-python/HEAD/README.md -------------------------------------------------------------------------------- /bin/help.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-community/asdf-python/HEAD/bin/help.config -------------------------------------------------------------------------------- /bin/help.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-community/asdf-python/HEAD/bin/help.links -------------------------------------------------------------------------------- /bin/help.overview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-community/asdf-python/HEAD/bin/help.overview -------------------------------------------------------------------------------- /bin/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-community/asdf-python/HEAD/bin/install -------------------------------------------------------------------------------- /bin/list-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-community/asdf-python/HEAD/bin/list-all -------------------------------------------------------------------------------- /bin/list-legacy-filenames: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo ".python-version" 4 | -------------------------------------------------------------------------------- /bin/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-community/asdf-python/HEAD/bin/utils.sh -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-community/asdf-python/HEAD/renovate.json -------------------------------------------------------------------------------- /shims/pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-community/asdf-python/HEAD/shims/pip --------------------------------------------------------------------------------