├── .coveragerc ├── .flake8 ├── .github ├── dependabot.yml ├── release.yml └── workflows │ ├── deploy.yml │ ├── lint.yml │ └── main.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── RELEASING.md ├── cherry_picker ├── __init__.py ├── __main__.py ├── cherry_picker.py └── test_cherry_picker.py ├── pyproject.toml ├── pytest.ini └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/cherry-picker/HEAD/.coveragerc -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/cherry-picker/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/cherry-picker/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/cherry-picker/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/cherry-picker/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/cherry-picker/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/cherry-picker/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/cherry-picker/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/cherry-picker/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/cherry-picker/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/cherry-picker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/cherry-picker/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/cherry-picker/HEAD/RELEASING.md -------------------------------------------------------------------------------- /cherry_picker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/cherry-picker/HEAD/cherry_picker/__init__.py -------------------------------------------------------------------------------- /cherry_picker/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/cherry-picker/HEAD/cherry_picker/__main__.py -------------------------------------------------------------------------------- /cherry_picker/cherry_picker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/cherry-picker/HEAD/cherry_picker/cherry_picker.py -------------------------------------------------------------------------------- /cherry_picker/test_cherry_picker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/cherry-picker/HEAD/cherry_picker/test_cherry_picker.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/cherry-picker/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/cherry-picker/HEAD/pytest.ini -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/cherry-picker/HEAD/tox.ini --------------------------------------------------------------------------------