Skip to content

Commit

Permalink
[Resolves Sceptre#921] Drop python version 2.7 support
Browse files Browse the repository at this point in the history
Python 2.7 is deprecated and it is no longer availble on
Circle CI build VMs. This PR removes python ver 2.7 support
from Sceptre.
  • Loading branch information
zaro0508 committed Jul 26, 2020
1 parent e28e039 commit 9fd2084
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
2.7-dev
3.6-dev
3.7-dev
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,10 @@ Note: Sceptre aims to be compatible with Python 2 & 3, please run unit test
against both versions. You will need the corresponding versions of Python
installed on your system.

Run unit tests and coverage using tox for Python 2.7, 3.6 and 3.7:
Run unit tests and coverage using tox for Python 3.6 and 3.7:

```bash
$ tox -e py27 $ tox -e py36 -e py37
$ tox -e py36 -e py37
```

If you use pyenv to manage Python versions, try `pip install tox-pyenv` to make
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@
"Intended Audience :: Developers",
"Natural Language :: English",
"Environment :: Console",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7"
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27,py36,py37
envlist = py36,py37

[testenv]
deps =
Expand Down

0 comments on commit 9fd2084

Please sign in to comment.