Skip to content

Commit 458e23a

Browse files
author
Ryan P
authored
Update test-manylinux.sh with 18.04 LTS
* Update release instructions to include rc branch * Fix version , update test-manylinux.sh with 18.04 LTS * Remove special character from test-manylinux.sh * Actually include changes to test-manylinux.sh * Backout RELEASE.md changes from this branch
1 parent 163d3f5 commit 458e23a

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

confluent_kafka/src/confluent_kafka.c

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2187,8 +2187,13 @@ static PyObject *libversion (PyObject *self, PyObject *args) {
21872187
rd_kafka_version());
21882188
}
21892189

2190+
/*
2191+
* Version hex representation
2192+
* 0xMMmmRRPP
2193+
* MM=major, mm=minor, RR=revision, PP=patchlevel (not used)
2194+
*/
21902195
static PyObject *version (PyObject *self, PyObject *args) {
2191-
return Py_BuildValue("si", "1.0.1", 0x00100100);
2196+
return Py_BuildValue("si", "1.0.1", 0x01000100);
21922197
}
21932198

21942199
static PyMethodDef cimpl_methods[] = {

tools/test-manylinux.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ function run_all_with_docker {
9999
[[ ! -z $DOCKER_IMAGES ]] || \
100100
# LTS and stable release of popular Linux distros.
101101
# We require >= Python 2.7 to be avaialble (which rules out Centos 6.6)
102-
DOCKER_IMAGES="ubuntu:14.04 ubuntu:16.04 ubuntu:17.10 debian:stable centos:7"
102+
DOCKER_IMAGES="ubuntu:14.04 ubuntu:16.04 ubuntu:18.04 debian:stable centos:7"
103103

104104

105105
_wheels="$wheelhouse/*manylinux*.whl"

0 commit comments

Comments
 (0)