Skip to content

Commit 76bd20c

Browse files
committed
Version 1.3.1
1 parent 33871e2 commit 76bd20c

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.rst

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,14 @@ odML libraries and editor
55
.. image:: https://coveralls.io/repos/github/G-Node/python-odml/badge.svg?branch=master
66
:target: https://coveralls.io/github/G-Node/python-odml?branch=master
77

8-
The Python-odML library (including the odML-Editor) is available on
9-
`GitHub <https://github.com/G-Node/python-odml>`_. If you are not familiar with
10-
the version control system **git**, but still want to use it, have a look at
11-
the documentaion available on the `git-scm website <https://git-scm.com/>`_.
12-
138
Dependencies
149
------------
1510

1611
* Python 2.7 or 3.5
1712
* Python packages:
1813

19-
* enum (version 0.4.4)
20-
* lxml (version 3.7.2)
14+
* enum
15+
* lxml
2116

2217
* These packages will be downloaded and installed automatically if the :code:`pip` method is used to install odML. Alternatively, they can be installed from the OS package manager. On Ubuntu, they are available as:
2318

@@ -38,10 +33,12 @@ The simplest way to install Python-odML is from PyPI using the pip tool::
3833

3934
$ pip install odml
4035

41-
On Ubuntu, the pip package manager is available in the repositories as :code:`python-pip`.
36+
On Ubuntu, the pip package manager is available in the repositories as :code:`python-pip` and :code:`python3-pip`.
4237

4338
If this method is used, the appropriate Python dependencies (enum and lxml) are downloaded and installed automatically.
4439

40+
On Linux it is more convenient to obtain the lxml library via the distribution's package manager (e.g., :code:`apt-get install python-lxml` for Ubuntu).
41+
4542

4643
Building from source
4744
--------------------

odml/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
from odml import value
66
from odml.dtypes import DType
77

8+
9+
__version__ = '1.3.1'
10+
811
# the original property-function is overwritten
912
# so get it back!
1013
try:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
setup(
2020
name='odML',
21-
version='1.3.0',
21+
version='1.3.1',
2222
description='open metadata Markup Language',
2323
author='G-Node',
2424
author_email='[email protected]',

0 commit comments

Comments
 (0)