├── .github └── ISSUE_TEMPLATE.md └── README.md /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 14 | 15 | ### description 16 | 17 | _fill in a description of your issue -- be specific!_ 18 | 19 | ### os information 20 | 21 | #### lsb_release -a 22 | 23 | ``` 24 | # paste the output of `lsb_release -a` here 25 | ``` 26 | 27 | #### uname -a 28 | 29 | ``` 30 | # paste the output of `uname -a` here 31 | ``` 32 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | issues 2 | ====== 3 | 4 | Bug tracking for [ppa:deadsnakes][0]. 5 | 6 | 7 | # [Create an issue][1] 8 | 9 | 10 | ### Adding the ppa 11 | 12 | ``` 13 | sudo add-apt-repository ppa:deadsnakes 14 | sudo apt update 15 | ``` 16 | 17 | [0]: https://launchpad.net/~deadsnakes/+archive/ubuntu/ppa 18 | [1]: https://github.com/deadsnakes/issues/issues 19 | --------------------------------------------------------------------------------