Skip to content

Commit 4900d6d

Browse files
committed
rename package
1 parent 100e867 commit 4900d6d

File tree

9 files changed

+12
-35
lines changed

9 files changed

+12
-35
lines changed

.github/workflows/CI.yml

Lines changed: 7 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,6 @@ jobs:
3030
target: x86
3131
- runner: ubuntu-latest
3232
target: aarch64
33-
python-version:
34-
- "3.7"
35-
- "3.8"
36-
- "3.9"
37-
- "3.10"
38-
- "3.11"
39-
- "3.12"
40-
- "3.13"
4133
# - runner: ubuntu-latest
4234
# target: armv7
4335
# - runner: ubuntu-latest
@@ -52,7 +44,7 @@ jobs:
5244
sudo apt-get install -y musl-tools gcc musl-dev
5345
- uses: actions/setup-python@v5
5446
with:
55-
python-version: ${{ matrix.python-version }}
47+
python-version: 3.x
5648
- name: Build wheels
5749
uses: PyO3/maturin-action@v1
5850
with:
@@ -63,7 +55,7 @@ jobs:
6355
- name: Upload wheels
6456
uses: actions/upload-artifact@v4
6557
with:
66-
name: wheels-linux-${{ matrix.platform.target }}-${{ matrix.python-version }}
58+
name: wheels-linux-${{ matrix.platform.target }}
6759
path: dist
6860

6961
# musllinux:
@@ -110,19 +102,11 @@ jobs:
110102
target: x64
111103
- runner: windows-latest
112104
target: x86
113-
python-version:
114-
- "3.7"
115-
- "3.8"
116-
- "3.9"
117-
- "3.10"
118-
- "3.11"
119-
- "3.12"
120-
- "3.13"
121105
steps:
122106
- uses: actions/checkout@v4
123107
- uses: actions/setup-python@v5
124108
with:
125-
python-version: ${{ matrix.python-version }}
109+
python-version: 3.x
126110
architecture: ${{ matrix.platform.target }}
127111
- name: Build wheels
128112
uses: PyO3/maturin-action@v1
@@ -133,7 +117,7 @@ jobs:
133117
- name: Upload wheels
134118
uses: actions/upload-artifact@v4
135119
with:
136-
name: wheels-windows-${{ matrix.platform.target }}-${{ matrix.python-version }}
120+
name: wheels-windows-${{ matrix.platform.target }}
137121
path: dist
138122

139123
macos:
@@ -145,18 +129,11 @@ jobs:
145129
# target: x86_64
146130
- runner: macos-14
147131
target: aarch64
148-
python-version:
149-
- "3.8"
150-
- "3.9"
151-
- "3.10"
152-
- "3.11"
153-
- "3.12"
154-
- "3.13"
155132
steps:
156133
- uses: actions/checkout@v4
157134
- uses: actions/setup-python@v5
158135
with:
159-
python-version: ${{ matrix.python-version }}
136+
python-version: 3.x
160137
- name: Build wheels
161138
uses: PyO3/maturin-action@v1
162139
with:
@@ -166,7 +143,7 @@ jobs:
166143
- name: Upload wheels
167144
uses: actions/upload-artifact@v4
168145
with:
169-
name: wheels-macos-${{ matrix.platform.target }}-${{ matrix.python-version }}
146+
name: wheels-macos-${{ matrix.platform.target }}
170147
path: dist
171148

172149
sdist:
@@ -209,4 +186,4 @@ jobs:
209186
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
210187
with:
211188
command: upload
212-
args: --non-interactive --skip-existing wheels-*/*
189+
args: --non-interactive --skip-existing wheels-*/*
File renamed without changes.
File renamed without changes.
Binary file not shown.

examples/cleora_loop.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import time
22

33
import numpy as np
4-
from cleora import SparseMatrix
4+
from cleora_python import SparseMatrix
55

66
start_time = time.time()
77

examples/column_indices.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import numpy as np
2-
from cleora import SparseMatrix
2+
from cleora_python import SparseMatrix
33

44
hyperedges = [
55
'a\t1',

examples/from_iterator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import time
22

33
import numpy as np
4-
from cleora import SparseMatrix
4+
from cleora_python import SparseMatrix
55

66
start_time = time.time()
77

examples/graph_pickle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import time
22

33
import numpy as np
4-
from cleora import SparseMatrix
4+
from cleora_python import SparseMatrix
55

66
import pickle
77

examples/predefined_cleora_loop.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import time
22

3-
from cleora import embed_using_baseline_cleora, SparseMatrix
3+
from cleora_python import embed_using_baseline_cleora, SparseMatrix
44

55
start_time = time.time()
66
graph = SparseMatrix.from_files(["perf_inputs/0.tsv", "perf_inputs/1.tsv", "perf_inputs/2.tsv", "perf_inputs/3.tsv", "perf_inputs/4.tsv", "perf_inputs/5.tsv", "perf_inputs/6.tsv", "perf_inputs/7.tsv"], "complex::reflexive::name")

0 commit comments

Comments
 (0)