Skip to content
This repository was archived by the owner on Sep 29, 2023. It is now read-only.

Commit 61ed20f

Browse files
author
Christian Jurk
committed
Fixed missing change in macro removal
1 parent a51ebb1 commit 61ed20f

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

rrdtoolmodule.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
#endif
4646

4747
/** Binding version. */
48-
static const char *_version = "0.1.3";
48+
static const char *_version = "0.1.4";
4949

5050
/** Exception types. */
5151
static PyObject *rrdtool_OperationalError;
@@ -933,14 +933,12 @@ static PyMethodDef rrdtool_methods[] = {
933933
METH_VARARGS, _rrdtool_fetch__doc__},
934934
{"flushcached", (PyCFunction)_rrdtool_flushcached,
935935
METH_VARARGS, _rrdtool_flushcached__doc__},
936-
#ifdef HAVE_RRD_GRAPH
937936
{"graph", (PyCFunction)_rrdtool_graph,
938937
METH_VARARGS, _rrdtool_graph__doc__},
939938
{"graphv", (PyCFunction)_rrdtool_graphv,
940939
METH_VARARGS, _rrdtool_graphv__doc__},
941940
{"xport", (PyCFunction)_rrdtool_xport,
942941
METH_VARARGS, _rrdtool_xport__doc__},
943-
#endif
944942
{"tune", (PyCFunction)_rrdtool_tune,
945943
METH_VARARGS, _rrdtool_tune__doc__},
946944
{"first", (PyCFunction)_rrdtool_first,

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def main():
1313

1414
kwargs = dict(
1515
name='rrdtool',
16-
version='0.1.3',
16+
version='0.1.4',
1717
description='rrdtool bindings for Python',
1818
keywords=['rrdtool'],
1919
author='Christian Jurk, Hye-Shik Chang',

0 commit comments

Comments
 (0)