Skip to content

Commit dad5099

Browse files
test 101
1 parent 6ecee4e commit dad5099

File tree

5 files changed

+12
-8
lines changed

5 files changed

+12
-8
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
build/
33
bin/
44
temp/
5+
wheelhouse/
6+
*.pyc
7+
*.pyo
8+
*.pyd
59
__pycache__/
610
*.egg-info/*
711
*/*.egg-info/*

.gitmodules

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +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
4+
[submodule "tensor-array-repos/Tensor-Array"]
5+
path = tensor-array-repos/Tensor-Array
66
url = https://github.com/Tensor-Array/Tensor-Array.git

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-repo/Tensor-Array" EXCLUDE_FROM_ALL)
12+
add_subdirectory("tensor-array-repos/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-repo/Tensor-Array/src"
17+
PUBLIC "${CMAKE_CURRENT_LIST_DIR}/tensor-array-repos/Tensor-Array/src"
1818
INTERFACE ${Python_INCLUDE_DIRS}
1919
)
2020

MANIFEST.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
include README.md LICENSE tensor-array-repo/Tensor-Array/LICENSE third_party/pybind11/LICENSE
1+
include README.md LICENSE tensor-array-repos/Tensor-Array/LICENSE third_party/pybind11/LICENSE
22
graft third_party/pybind11/include
33
graft third_party/pybind11/tools
44
graft third_party/pybind11/pybind11
5-
graft tensor-array-repo/Tensor-Array/src
5+
graft tensor-array-repos/Tensor-Array/src
66
graft src
77
global-include CMakeLists.txt *.cmake Config.cmake.in

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-repo/Tensor-Array/scripts/actions/install-cuda-rhel.sh",
15+
"chmod +x {package}/tensor-array-repos/Tensor-Array/scripts/actions/install-cuda-rhel.sh",
1616
"dnf -y install lsb-release wget",
17-
"{package}/tensor-array-repo/Tensor-Array/scripts/actions/install-cuda-rhel.sh"
17+
"{package}/tensor-array-repos/Tensor-Array/scripts/actions/install-cuda-rhel.sh"
1818
]
1919
xbuild-tools = ["cmake", "ninja"]

0 commit comments

Comments
 (0)