Skip to content

Commit

Permalink
Various removals
Browse files Browse the repository at this point in the history
  • Loading branch information
kounelisagis committed Dec 9, 2024
1 parent 30cd568 commit 59f247f
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 16 deletions.
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ __pycache__/
*.so
*.dylib

# Cython extensions
*.cpp

# Distribution / packaging
.Python
env/
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
requires = [
"scikit-build-core",
"pybind11",
"Cython>=3",
"numpy>=2.0.1"
]
build-backend = "scikit_build_core.build"
Expand Down
9 changes: 0 additions & 9 deletions tiledb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,6 @@
import os
import sys

# un-comment this section to fix Cython backtrace line-numbers in
# IPython/Jupyter. see https://bugs.python.org/issue32797#msg323167
# ---
# try:
# from importlib.machinery import ExtensionFileLoader
# else:
# del ExtensionFileLoader.get_source
# ---

if os.name == "posix":
if sys.platform == "darwin":
lib_name = "libtiledb.dylib"
Expand Down
1 change: 0 additions & 1 deletion tiledb/cc/array.cc
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ void init_array(py::module &m) {
end.value()));
}),
py::keep_alive<1, 2>())
// Temporary initializer while Array is converted from Cython to PyBind.
.def(py::init([](const Context &ctx, py::object array) {
tiledb_array_t *c_array = (py::capsule)array.attr("__capsule__")();
return std::make_unique<Array>(ctx, c_array, false);
Expand Down
2 changes: 0 additions & 2 deletions tiledb/numpyFlags.h

This file was deleted.

0 comments on commit 59f247f

Please sign in to comment.