Skip to content

Commit bdf70c1

Browse files
committed
Update readme
1 parent 254799d commit bdf70c1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,10 @@ USAGE:
116116
pyo3-pack publish [FLAGS] [OPTIONS]
117117
118118
FLAGS:
119+
--debug Do not pass --release to cargo
119120
-h, --help Prints help information
120-
--release Pass --release to cargo
121+
--no-strip Strip the library for minimum file size
121122
--skip-auditwheel Don't check for manylinux compliance
122-
--strip Strip the library for minimum file size
123123
-V, --version Prints version information
124124
125125
OPTIONS:

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ before_deploy:
6666
- appveyor PushArtifact ../../%APPVEYOR_PROJECT_SLUG%-%APPVEYOR_REPO_TAG_NAME%-%TARGET%.zip
6767
- cd ../..
6868
# Publish pypi
69-
- cargo run -- publish -b bin -u konstin --release --strip
69+
- cargo run -- publish -b bin -u konstin
7070

7171

7272
deploy:

ci/before_deploy.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ EOF
7676

7777
upload_to_pypi() {
7878
# 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"
8080
}
8181

8282
main() {

0 commit comments

Comments
 (0)