-
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.
Update CI to build CPython 3.13 wheels & drop 3.7
Updates the CI to build 3.13 wheels based on the latest RC and drop the 3.7 support and wheels. Signed-off-by: Jordan Borean <[email protected]>
- Loading branch information
Showing
4 changed files
with
18 additions
and
17 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 |
---|---|---|
|
@@ -278,7 +278,7 @@ def gssapi_modules(lst): | |
|
||
setup( | ||
name='gssapi', | ||
version='1.8.4', | ||
version='1.9.0', | ||
author='The Python GSSAPI Team', | ||
author_email='[email protected]', | ||
packages=['gssapi', 'gssapi.raw', 'gssapi.raw._enum_extensions', | ||
|
@@ -291,17 +291,17 @@ def gssapi_modules(lst): | |
long_description=long_desc, | ||
license='LICENSE.txt', | ||
url="https://github.com/pythongssapi/python-gssapi", | ||
python_requires=">=3.7", | ||
python_requires=">=3.8", | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
'Programming Language :: Python :: 3.12', | ||
'Programming Language :: Python :: 3.13', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: ISC License (ISCL)', | ||
'Programming Language :: Python :: Implementation :: CPython', | ||
|