File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -116,10 +116,10 @@ USAGE:
116
116
pyo3-pack publish [FLAGS] [OPTIONS]
117
117
118
118
FLAGS:
119
+ --debug Do not pass --release to cargo
119
120
-h, --help Prints help information
120
- --release Pass --release to cargo
121
+ --no-strip Strip the library for minimum file size
121
122
--skip-auditwheel Don't check for manylinux compliance
122
- --strip Strip the library for minimum file size
123
123
-V, --version Prints version information
124
124
125
125
OPTIONS:
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ before_deploy:
66
66
- appveyor PushArtifact ../../%APPVEYOR_PROJECT_SLUG%-%APPVEYOR_REPO_TAG_NAME%-%TARGET%.zip
67
67
- cd ../..
68
68
# Publish pypi
69
- - cargo run -- publish -b bin -u konstin --release --strip
69
+ - cargo run -- publish -b bin -u konstin
70
70
71
71
72
72
deploy :
Original file line number Diff line number Diff line change 76
76
77
77
upload_to_pypi () {
78
78
# We do care for manylinux compliance for pypi, so we use the musl feature to get static binaries
79
- CFLAGS=" -fno-stack-protector" cargo run -- publish -u konstin --release - b bin --target $TARGET --strip --cargo-extra-args=" --features=musl"
79
+ CFLAGS=" -fno-stack-protector" cargo run -- publish -u konstin -b bin --target $TARGET --cargo-extra-args=" --features=musl"
80
80
}
81
81
82
82
main () {
You can’t perform that action at this time.
0 commit comments