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

Declare python_requires to support Python >= 3.6 #850

Merged
merged 2 commits into from
Dec 16, 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 @@ -50,7 +50,7 @@

python etstool.py test-all

Currently supported runtime values are ``2.7`` and ``3.5``, and currently
Currently supported runtime values include ``3.6``, and currently
supported toolkits are ``null``, ``pyqt``, ``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 @@ -83,7 +83,6 @@
import click

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

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ def resolve_version():
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 @@ -359,5 +359,6 @@ def resolve_version():
]
},
platforms=["Windows", "Linux", "Mac OS-X", "Unix", "Solaris"],
python_requires=">=3.6",
zip_safe=False,
)