Skip to content

Commit e81955c

Browse files
committed
update
1 parent 10fe863 commit e81955c

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

tools/RELEASE.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -306,18 +306,26 @@ In the same virtualenv as created above:
306306

307307
**CANDIDATE ITERATION:**
308308

309-
# For release-candidates specify --pre argument and version-pinning:
310-
$ pip install --pre confluent_kafka==0.11.4rc1
309+
# For release-candidates specify --pre argument and version-pinning.
310+
311+
# Ensure you veriy installation of both pre-built wheel and building from source:
312+
313+
$ pip install --pre -i https://test.pypi.org/simple/ "confluent-kafka==0.11.4rc1"
314+
315+
$ C_INCLUDE_PATH=/opt/homebrew/Cellar/librdkafka/0.11.4/include LIBRARY_PATH=/opt/homebrew/Cellar/librdkafka/0.11.4/lib pip install --pre --no-binary "confluent-kafka" -i https://test.pypi.org/simple/ "confluent-kafka==0.11.4rc1" # On OSX, need to provide paths for librdkafka
311316

312317

313318
**RELEASE ITERATION:**
314319

315320
# For final releases no --pre or version-pinning, pay
316321
# attention to the version being picked up, should be the
317-
# final v0.11.4 release:
322+
# final v0.11.4 release.
323+
324+
# Ensure you veriy installation of both pre-built wheel and building from source:
318325

319-
$ pip install confluent_kafka
326+
$ pip install -i https://test.pypi.org/simple/ "confluent-kafka==0.11.4"
320327

328+
$ C_INCLUDE_PATH=/opt/homebrew/Cellar/librdkafka/0.11.4/include LIBRARY_PATH=/opt/homebrew/Cellar/librdkafka/0.11.4/lib pip install --no-binary "confluent-kafka" -i https://test.pypi.org/simple/ "confluent-kafka==0.11.4" # On OSX, need to provide paths for librdkafka
321329

322330
Verify that the package works and prints the expected version:
323331

0 commit comments

Comments
 (0)