diff options
author | jaseg <code@jaseg.net> | 2017-05-28 23:22:48 +0200 |
---|---|---|
committer | jaseg <code@jaseg.net> | 2017-05-28 23:27:44 +0200 |
commit | 1d9fe92e1515dfaa581599fb955c14ea0d791c00 (patch) | |
tree | 53fc7cb4d2984529c1ba91bb86e0e8a41e698597 | |
parent | c34d94a0813424b5e54932d1f6bce823d64c9540 (diff) | |
download | python-mpv-1d9fe92e1515dfaa581599fb955c14ea0d791c00.tar.gz python-mpv-1d9fe92e1515dfaa581599fb955c14ea0d791c00.tar.bz2 python-mpv-1d9fe92e1515dfaa581599fb955c14ea0d791c00.zip |
README: Add version compatibility blurb
-rw-r--r-- | README.rst | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -16,6 +16,26 @@ Installation ...though you can also realistically just copy `mpv.py`_ into your project as it's all nicely contained in one file. +Requirements +~~~~~~~~~~~~ + +libmpv (no kidding!) +.................... +``libmpv.so`` either locally (in your current working directory) or somewhere in your system library search path. This +module is somewhat lenient as far as ``libmpv`` versions are concerned but since ``libmpv`` is changing quite frequently +you'll only get all the newest features when using an up-to-date version of this module. The unit tests for this module +do some basic automatic version compatibility checks. If you discover anything missing here, please open an `issue`_ or +submit a `pull request`_ on github. + +Python 2.7, 3.5 or 3.6 (officially) +................................... +The ``master`` branch officially only supports recent python releases (3.5 onwards), but there is the somewhat outdated +but functional `py2compat branch`_ providing Python 2 compatibility. + +.. _`py2compat branch`: https://github.com/jaseg/python-mpv/tree/py2compat +.. _`issue`: https://github.com/jaseg/python-mpv/issues +.. _`pull request`: https://github.com/jaseg/python-mpv/pulls + Usage ----- |