Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/releases/upcoming/190.removal.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Remove support for Python 2.7 and 3.5 (#190)
4 changes: 1 addition & 3 deletions etstool.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@

python etstool.py test_all

Currently supported runtime values are ``2.7``, ``3.5``, ``3.6``. Not all
Currently supported runtime value is``3.6``. Not all
runtimes will work, but the tasks will fail with a clear error if that is the
case.

Expand Down Expand Up @@ -95,8 +95,6 @@
DEFAULT_RUNTIME = "3.6"

supported_runtimes = [
'2.7',
'3.5',
'3.6',
]

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,4 +138,5 @@ def write_version_py(filename='apptools/_version.py'):
packages=find_packages(),
platforms=["Windows", "Linux", "Mac OS-X", "Unix", "Solaris"],
zip_safe=False,
)
python_requires=">=3.6",
)