We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ee9dbf commit 34e32b1Copy full SHA for 34e32b1
python/publish.sh
@@ -18,6 +18,13 @@ if [ "$old_version" = "$new_version" ]; then
18
fi
19
20
21
-# publish
22
-git add -A && git commit -m "v$new_version" && git tag -a "v$new_version" -m "v$new_version"
23
-git push && git push origin --tags
+if [ "$1" = "--tag" ]; then
+ # publish tag
+ git tag -a "v$new_version" -m "v$new_version"
24
+ git push origin --tags
25
+else
26
+ # publish package
27
+ git add -A && git commit -m "v$new_version"
28
+ git push
29
+fi
30
+
python/pyproject.toml
@@ -12,7 +12,7 @@ build-backend = "setuptools.build_meta"
12
name = "deglib"
13
dynamic = ["version"]
14
dependencies = [
15
- "numpy>=1.21",
+ "numpy>=2.2",
16
"psutil",
17
]
requires-python = ">= 3.11"
0 commit comments