Skip to content

Commit 914794a

Browse files
committed
Release 1.3.0 - Python 3 support
1 parent be2e178 commit 914794a

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

HISTORY.rst

+7
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
History
44
-------
55

6+
1.3.0 (2015-02-03)
7+
^^^^^^^^^^^^^^^^^^
8+
* Python 3.3 and 3.4 supported
9+
* Updated prov-convert script to support XML output
10+
* Added missing test JSON and XML files in distributions
11+
12+
613
1.2.0 (2014-12-19)
714
^^^^^^^^^^^^^^^^^^
815
* Added: :py:meth:`prov.graph.prov_to_graph` to convert a :py:class:`~prov.model.ProvDocument` to a `MultiDiGraph <http://networkx.github.io/documentation/latest/reference/classes.multidigraph.html>`_

prov/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
__author__ = 'Trung Dong Huynh'
55
__email__ = '[email protected]'
6-
__version__ = '1.2.0'
6+
__version__ = '1.3.0'
77

88
__all__ = ["Error", "model", "read"]
99

setup.cfg

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
[bdist_wheel]
2-
python-tag = py27
2+
universal=1
3+
34
[metadata]
45
description-file = README.rst

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
setup(
2525
name='prov',
26-
version='1.2.0',
26+
version='1.3.0',
2727
description='A library for W3C Provenance Data Model supporting PROV-JSON and PROV-XML',
2828
long_description=readme + '\n\n' + history,
2929
author='Trung Dong Huynh',

0 commit comments

Comments
 (0)