We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fdcc69 commit a9e7105Copy full SHA for a9e7105
2 files changed
.github/workflows/BuildAndPublish.yml
@@ -37,7 +37,7 @@ jobs:
37
env:
38
CIBW_ARCHS: auto64
39
CIBW_BUILD_FRONTEND: "pip; args: --verbose"
40
- CIBW_ENVIRONMENT_MACOS: "MACOSX_DEPLOYMENT_TARGET=11.00"
+ CIBW_ENVIRONMENT_MACOS: "MACOSX_DEPLOYMENT_TARGET=10.15"
41
CIBW_SKIP: "pp*"
42
43
# upload artifacts
c_python/compile.sh
@@ -17,6 +17,14 @@ case "$1" in
17
ci)
18
cibuildwheel --output-dir "dist"
19
;;
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
+ ;;
28
*)
29
echo "invalid option"
30
0 commit comments