Skip to content

Commit 5425d32

Browse files
committed
fixes release
1 parent 6c265ae commit 5425d32

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

_tooling/make_release.sh

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,10 @@ fi
1616

1717
for PKG in */pyproject.toml; do
1818
PKG="$(dirname "$PKG")"
19-
if [[ "$PKG" == "docs" ]]; then
19+
if [[ "$PKG" == "docs" || "$PKG" == "wkcuber" ]]; then
2020
echo Skipping "$PKG"
2121
continue
2222
fi
23-
if [ ! -f "$PKG/Changelog.md" ]; then
24-
continue
25-
fi
2623
echo "Creating release for $PKG"
2724

2825
pushd "$PKG" > /dev/null

_tooling/publish.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set +x
44

55
for PKG in */pyproject.toml; do
66
PKG="$(dirname "$PKG")"
7-
if [[ "$PKG" == "docs" ]]; then
7+
if [[ "$PKG" == "docs" || "$PKG" == "wkcuber" ]]; then
88
echo Skipping "$PKG"
99
continue
1010
fi

wkcuber/wkcuber/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
raise Exception(
2+
"The `wkcuber` package is deprecated because the CLI was integrated into "
3+
+ "the `webknossos` package. Please use the `webknossos` package instead."
4+
)

0 commit comments

Comments
 (0)