Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop Python 3.5 support in TraitsUI #1436

Merged
merged 1 commit into from
Dec 15, 2020
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
3 changes: 1 addition & 2 deletions etstool.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@

python etstool.py test_all

Currently supported runtime values are ``3.5`` and ``3.6``, and currently
Currently supported runtime values are ``3.6``, and currently
supported toolkits are ``null``, ``pyqt``, ``pyqt5``, ``pyside`` and ``wx``.
Not all combinations of toolkits and runtimes will work, but the tasks will
fail with a clear error if that is the case.
Expand Down Expand Up @@ -95,7 +95,6 @@
import click

supported_combinations = {
'3.5': {'pyside2', 'pyqt', 'pyqt5', 'null'},
'3.6': {'pyside2', 'pyqt', 'pyqt5', 'wx', 'null'},
}

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ def additional_commands():
Operating System :: POSIX
Operating System :: Unix
Programming Language :: Python
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Expand Down Expand Up @@ -354,5 +354,6 @@ def additional_commands():
]
},
platforms=["Windows", "Linux", "Mac OS-X", "Unix", "Solaris"],
python_requires=">=3.6",
zip_safe=False,
)