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

Commit c166fbf

Browse files
author
Christian Kröger
committed
Added MANIFEST.in to include header file for source distribution
1 parent 959dd31 commit c166fbf

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include rrdtoolmodule.h

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-[![Build Status](https://travis-ci.org/commx/python-rrdtool.svg?branch=master)](https://travis-ci.org/commx/python-rrdtool)
1+
[![Build Status](https://travis-ci.org/commx/python-rrdtool.svg?branch=master)](https://travis-ci.org/commx/python-rrdtool)
22

33
python-rrdtool
44
==============

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@
5858
# built documents.
5959
#
6060
# The short X.Y version.
61-
version = '0.1.9'
61+
version = '0.1.11'
6262
# The full version, including alpha/beta/rc tags.
63-
release = '0.1.9'
63+
release = '0.1.11'
6464

6565
# The language for content autogenerated by Sphinx. Refer to documentation
6666
# for a list of supported languages.

docs/usage.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ The function calls are converted to appropriate values and mapped to their librr
3333
:raises: ProgrammingError: in the event if no callback has been previously set
3434
:rtype: None
3535

36+
.. note:: This function has been added in rrdtool 1.5.0 and may not be available if compiled against an older version.
3637
.. versionadded:: 0.1.7
3738

3839
.. function:: create(*args)
@@ -279,6 +280,8 @@ The function calls are converted to appropriate values and mapped to their librr
279280

280281
.. note:: This function uses Python long integers on Python 2.x and 3.x to minimize compatibility code requirements (Python 3 has long integers as it's default int anyway).
281282

283+
.. note:: This function has been added in rrdtool 1.5.0 and may not be available if compiled against an older version.
284+
282285
.. versionadded:: 0.1.7
283286

284287
.. function:: resize(*args)
@@ -363,7 +366,7 @@ The function calls are converted to appropriate values and mapped to their librr
363366
Example::
364367

365368
>>> rrdtool.__version__
366-
'0.1.7'
369+
'0.1.11'
367370

368371
Errors and Exceptions
369372
---------------------

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
package_dir = os.path.abspath(os.path.dirname(__file__))
1313

1414
# package version
15-
package_version = '0.1.10'
15+
package_version = '0.1.11'
1616

1717

1818
def check_extensions():

0 commit comments

Comments
 (0)