Skip to content

Commit

Permalink
Fix dumb import (#253)
Browse files Browse the repository at this point in the history
  • Loading branch information
genzgd authored Oct 18, 2023
1 parent 997d7d2 commit 28829ba
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ In any case, this should not affect the basic usage of Superset with ClickHouse.
your Superset installation, the ClickHouse datasource will be available with either the enhanced connection dialog
or a standard SqlAlchemy DSN in the form of `clickhousedb://{username}:{password}@{host}:{port}`.

## 0.6.16, 2023-10-18
### Bug Fix
- Remove bad private import to fix C Linkage. Closes https://github.com/ClickHouse/clickhouse-connect/issues/252

## 0.6.15, 2023-10-16
### Improvement
- Added Python 3.12 wheels and CI tests. Note that PyArrow is not yet available for 3.12, but should be soon. See https://github.com/apache/arrow/issues/37880
Expand Down
2 changes: 1 addition & 1 deletion clickhouse_connect/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = '0.6.15'
version = '0.6.16'
2 changes: 1 addition & 1 deletion clickhouse_connect/driverc/dataconv.pyx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import struct
from _testbuffer import PyBUF_READ
from typing import Sequence, Optional

import array
Expand All @@ -9,6 +8,7 @@ import cython

from .buffer cimport ResponseBuffer
from cpython cimport Py_INCREF, Py_DECREF
from cpython.buffer cimport PyBUF_READ
from cpython.mem cimport PyMem_Free, PyMem_Malloc
from cpython.tuple cimport PyTuple_New, PyTuple_SET_ITEM
from cpython.bytearray cimport PyByteArray_GET_SIZE, PyByteArray_Resize
Expand Down

0 comments on commit 28829ba

Please sign in to comment.