-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump version to 1.8.1 with Python 3.7 requires
This update bumps the `python_requires` to be `>=3.7` as the sdist build requires PEP 517 support that is somewhat only guaranteed with the pip that was shipped with Python 3.7 or greater. Since 3.6 has been end of life since December 2021 and the remaining Linux distributions that still use it have system provided packages this shouldn't be a surprise. Also use CentOS 9 Stream in the CI tests to test this on an actual RHEL-ish host on the version of Python actually supported. Signed-off-by: Jordan Borean <[email protected]>
- Loading branch information
Showing
4 changed files
with
51 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -274,7 +274,7 @@ def gssapi_modules(lst): | |
|
||
setup( | ||
name='gssapi', | ||
version='1.8.0', | ||
version='1.8.1', | ||
author='The Python GSSAPI Team', | ||
author_email='[email protected]', | ||
packages=['gssapi', 'gssapi.raw', 'gssapi.raw._enum_extensions', | ||
|
@@ -287,12 +287,11 @@ def gssapi_modules(lst): | |
long_description=long_desc, | ||
license='LICENSE.txt', | ||
url="https://github.com/pythongssapi/python-gssapi", | ||
python_requires=">=3.6", | ||
python_requires=">=3.7", | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
|