Skip to content

Commit 6c5f2a1

Browse files
authored
Fix import error on systems without libsasl2.so.3 + bump version to 2.11.0+gr.2 (G-Research#8)
* Fix import error on systems without libsasl2.so.3 * Bump version to 2.11.0+gr.2
1 parent 575f6c7 commit 6c5f2a1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "confluent-kafka"
7-
version = "2.11.0+gr.1"
7+
version = "2.11.0+gr.2"
88
description = "Confluent's Python client for Apache Kafka"
99
classifiers = [
1010
"Development Status :: 5 - Production/Stable",

src/confluent_kafka/cimpl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
if not name.startswith("__"):
1111
globals()[name] = getattr(module, name)
1212
break
13-
except ModuleNotFoundError:
13+
except ImportError:
1414
pass
1515

1616
if variant is None:

0 commit comments

Comments
 (0)