Skip to content

Commit 488ac3a

Browse files
test
1 parent aef3b27 commit 488ac3a

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
[submodule "third_party/pybind11"]
22
path = third_party/pybind11
33
url = https://github.com/pybind/pybind11
4+
[submodule "tensor-array-repo/Tensor-Array"]
5+
path = tensor-array-repo/Tensor-Array
6+
url = https://github.com/Tensor-Array/Tensor-Array

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ include(CTest)
99
enable_testing()
1010

1111
add_subdirectory("third_party/pybind11" EXCLUDE_FROM_ALL)
12-
add_subdirectory("tensor-array-repos/Tensor-Array" EXCLUDE_FROM_ALL)
12+
add_subdirectory("tensor-array-repo/Tensor-Array" EXCLUDE_FROM_ALL)
1313
pybind11_add_module(tensor2 SHARED src/tensor_array/_core/tensor_bind.cc)
1414

1515
target_include_directories(
1616
tensor2
17-
PUBLIC "${CMAKE_CURRENT_LIST_DIR}/tensor-array-repos/Tensor-Array/src"
17+
PUBLIC "${CMAKE_CURRENT_LIST_DIR}/tensor-array-repo/Tensor-Array/src"
1818
INTERFACE ${Python_INCLUDE_DIRS}
1919
)
2020

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ xbuild-tools = ["cmake", "ninja"]
1212

1313
[tool.cibuildwheel.linux]
1414
before-all = [
15-
"chmod +x {package}/tensor-array-repos/Tensor-Array/scripts/actions/install-cuda-rhel.sh",
15+
"chmod +x {package}/tensor-array-repo/Tensor-Array/scripts/actions/install-cuda-rhel.sh",
1616
"dnf -y install lsb-release wget",
17-
"{package}/tensor-array-repos/Tensor-Array/scripts/actions/install-cuda-rhel.sh"
17+
"{package}/tensor-array-repo/Tensor-Array/scripts/actions/install-cuda-rhel.sh"
1818
]
1919
xbuild-tools = ["cmake", "ninja"]

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,8 @@ def main():
149149
"Programming Language :: Python :: 3.9",
150150
"Programming Language :: Python :: 3.10",
151151
"Programming Language :: Python :: 3.11",
152+
"Programming Language :: Python :: 3.12",
153+
"Programming Language :: Python :: 3.13",
152154

153155
"License :: OSI Approved :: MIT License",
154156

tensor-array-repo/Tensor-Array

Submodule Tensor-Array added at 10d1556

0 commit comments

Comments
 (0)