Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit d9200d1

Browse files
Fix Cython 3 Compatibility
Fixes compatibility with Cython 3 by fixing up the import so it doesn't try and do a recursive import. This also increases the upper bound for Cython to 4.0.0 now that 3.0.0 is compatible. Signed-off-by: Jordan Borean <jborean93@gmail.com>
1 parent 86e9957 commit d9200d1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

‎gssapi/raw/_enum_extensions/ext_dce.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from gssapi.raw.cython_types cimport OM_uint32
22

3-
import gssapi.raw._enum_extensions as ext_registry
3+
from gssapi.rawimport_enum_extensions as ext_registry
44

55

66
cdef extern from "python_gssapi_ext.h":

‎pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[build-system]
22
requires = [
3-
"Cython >= 0.29.29, < 3.0.0", # 0.29.29 includes fixes for Python 3.11
3+
"Cython >= 0.29.29, < 4.0.0", # 0.29.29 includes fixes for Python 3.11
44
"setuptools >= 40.6.0", # Start of PEP 517 support for setuptools
55
]
66
build-backend = "setuptools.build_meta"

‎setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ def gssapi_modules(lst):
274274

275275
setup(
276276
name='gssapi',
277-
version='1.8.2',
277+
version='1.8.3',
278278
author='The Python GSSAPI Team',
279279
author_email='jborean93@gmail.com',
280280
packages=['gssapi', 'gssapi.raw', 'gssapi.raw._enum_extensions',

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /