Skip to content

Commit e58178a

Browse files
committed
renaming files and scripts
1 parent 38b2471 commit e58178a

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

pyproject.toml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@ name = "radius-clustering"
77
version = "1.0.0"
88
description = "A Clustering under radius constraints algorithm using minimum dominating sets"
99
readme = "README.md"
10-
maintainers = [
11-
{name = "Haenn Quentin", email="[email protected]"},
12-
]
10+
authors = ["Quentin Haenn"]
11+
1312
dependencies = [
1413
"matplotlib>=3.6.2",
1514
"numpy>=1.23",
@@ -40,6 +39,11 @@ classifiers=[
4039
]
4140
keywords = ["Unsupervised learning","clustering", "minimum dominating sets","clustering under radius constraint"]
4241

42+
[project.urls]
43+
source = "https://github.com/lias-laboratory/radius_clustering"
44+
tracker = "https://github.com/lias-laboratory/radius_clustering/issues"
45+
documentation = "https://lias-laboratory.github.io/radius_clustering/"
46+
4347
[project.optional-dependencies]
4448
dev = [
4549
"pytest>=8.3.3",

build_wheel.sh renamed to scripts/build_wheel.sh

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
#!/bin/bash
22
set -e -u -x
33

4-
PLAT=manylinux_2_24_x86_64
5-
64
function repair_wheel {
75
wheel="$1"
86
if ! auditwheel show "$wheel"; then
@@ -14,8 +12,12 @@ function repair_wheel {
1412

1513
# Compile wheels
1614
for PYBIN in /opt/python/*/bin; do
17-
if [[ "$PYBIN" == *cp39* || "$PYBIN" == *cp310* || $PYBIN == *cp311* ]] ; then
18-
"${PYBIN}/pip" wheel --no-deps /io/ -w wheelhouse/
15+
if [[ $PYBIN != *"cp313t"* ]] && \
16+
[[ $PYBIN != *"pp"* ]] && \
17+
[[ $PYBIN != *"cp36"* ]] &&\
18+
[[ $PYBIN != *"cp37"* ]] &&\
19+
[[ $PYBIN != *"cp38"* ]]; then
20+
"${PYBIN}/pip" wheel /io/ --no-deps -w wheelhouse/
1921
fi
2022
done
2123

0 commit comments

Comments
 (0)