Skip to content

Commit a9e7105

Browse files
committed
v0.1.7
1 parent 3fdcc69 commit a9e7105

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

.github/workflows/BuildAndPublish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
env:
3838
CIBW_ARCHS: auto64
3939
CIBW_BUILD_FRONTEND: "pip; args: --verbose"
40-
CIBW_ENVIRONMENT_MACOS: "MACOSX_DEPLOYMENT_TARGET=11.00"
40+
CIBW_ENVIRONMENT_MACOS: "MACOSX_DEPLOYMENT_TARGET=10.15"
4141
CIBW_SKIP: "pp*"
4242

4343
# upload artifacts

c_python/compile.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,14 @@ case "$1" in
1717
ci)
1818
cibuildwheel --output-dir "dist"
1919
;;
20+
release)
21+
VERSION="v0.1.7"
22+
git tag -d "$VERSION"
23+
git commit -am "$VERSION"
24+
git tag -a "$VERSION" -m "$VERSION"
25+
git push
26+
git push origin --tags
27+
;;
2028
*)
2129
echo "invalid option"
2230
;;

0 commit comments

Comments
 (0)