From 35cbd270672eacf54fba259e9bd3f35d93026cef Mon Sep 17 00:00:00 2001 From: Jordan Borean Date: Tue, 2 Sep 2025 04:34:59 +1000 Subject: [PATCH 1/3] Add long_description_content_type to setup Signed-off-by: Jordan Borean --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 14c8b02..8ddb00f 100755 --- a/setup.py +++ b/setup.py @@ -289,6 +289,7 @@ def gssapi_modules(lst): }, description='Python GSSAPI Wrapper', long_description=long_desc, + long_description_content_type='text/x-rst', license='LICENSE.txt', url="https://github.com/pythongssapi/python-gssapi", python_requires=">=3.9", From 0adf37ca2cc425e6dcd790712906f58ca2608488 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Bompard?= Date: Mon, 8 Sep 2025 09:44:11 +0200 Subject: [PATCH 2/3] Use the SPDX license name in setup.py as required by PEP-639 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reference: https://peps.python.org/pep-0639/ Signed-off-by: Aurélien Bompard --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8ddb00f..5a6ef5a 100755 --- a/setup.py +++ b/setup.py @@ -290,7 +290,8 @@ def gssapi_modules(lst): description='Python GSSAPI Wrapper', long_description=long_desc, long_description_content_type='text/x-rst', - license='LICENSE.txt', + license='ISC', + license_files=['LICENCE.txt'], url="https://github.com/pythongssapi/python-gssapi", python_requires=">=3.9", classifiers=[ From 55df351f3c3e49266dda49327b28239b991c8246 Mon Sep 17 00:00:00 2001 From: Jordan Borean Date: Fri, 3 Oct 2025 11:26:56 +1000 Subject: [PATCH 3/3] Fix license file release Signed-off-by: Jordan Borean --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 5a6ef5a..ad9b543 100755 --- a/setup.py +++ b/setup.py @@ -278,7 +278,7 @@ def gssapi_modules(lst): setup( name='gssapi', - version='1.10.0', + version='1.10.1', author='The Python GSSAPI Team', author_email='jborean93@gmail.com', packages=['gssapi', 'gssapi.raw', 'gssapi.raw._enum_extensions', @@ -291,7 +291,7 @@ def gssapi_modules(lst): long_description=long_desc, long_description_content_type='text/x-rst', license='ISC', - license_files=['LICENCE.txt'], + license_files=['LICENSE.txt'], url="https://github.com/pythongssapi/python-gssapi", python_requires=">=3.9", classifiers=[