This repository has been archived by the owner on Jan 9, 2024. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add explicit Python versions including 3.8 and 3.9 (#4)
Now instead of installing just the "dev" versions of 3.6 and 3.7, we explicitly install the latest versions of 3.6, 3.7, 3.8, and 3.9. I also added a `pyenv global` to "activate" all of these Python versions, so that the repositories no longer need to rely on a `.python-version` file to find the appropriate versions. Built and tested locally: ```sh > docker run -it sceptre ~ $ python3.6 Python 3.6.13 (default, Apr 21 2021, 18:35:04) [GCC 10.2.1 20201203] on linux Type "help", "copyright", "credits" or "license" for more information. >>> ~ $ python3.7 Python 3.7.10 (default, Apr 21 2021, 18:36:29) [GCC 10.2.1 20201203] on linux Type "help", "copyright", "credits" or "license" for more information. >>> ~ $ python3.8 Python 3.8.8 (default, Mar 15 2021, 13:10:14) [GCC 10.2.1 20201203] on linux Type "help", "copyright", "credits" or "license" for more information. >>> ~ $ python3.9 Python 3.9.4 (default, Apr 21 2021, 18:40:51) [GCC 10.2.1 20201203] on linux Type "help", "copyright", "credits" or "license" for more information. >>> ~ $ ```
- Loading branch information