Skip to content

Commit 61e18f8

Browse files
committed
Upate version number and python version requirements.
1 parent 32d2d28 commit 61e18f8

5 files changed

Lines changed: 22 additions & 11 deletions

File tree

CHANGELOG.rst

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
11
OpenXC Python Library Changelog
22
===============================
33

4-
v0.14.0-dev
4+
v1.0.0
5+
----------
6+
* Remove python 2.7 support
7+
* Add python 3.6 support
8+
* Known Issue: Tool openxc-dashboard does not display correctly in windows
9+
10+
v0.15.0
11+
----------
12+
13+
* Fix: Install curses on windows
14+
* Fix: Multiple dependencies updated due to vulnerabilities
15+
16+
v0.14.0
517
----------
618

719
* Fix: Remove support for Python 2.6

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ OpenXC for Python
44

55
.. image:: /docs/_static/logo.png
66

7-
:Version: 0.14.0-dev
7+
:Version: 1.0.0
88
:Web: http://openxcplatform.com
99
:Download: http://pypi.python.org/pypi/openxc/
1010
:Documentation: http://python.openxcplatform.com

docs/index.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ OpenXC for Python
44

55
.. image:: /_static/logo.png
66

7-
:Version: 0.13.0
7+
:Version: 1.0.0
88
:Web: http://openxcplatform.com
99
:Download: http://pypi.python.org/pypi/openxc/
1010
:Documentation: http://python.openxcplatform.com
1111
:Source: http://github.com/openxc/openxc-python/
1212

13-
The OpenXC Python library (for Python 2.7) provides an interface to
13+
The OpenXC Python library (for Python 3.6) provides an interface to
1414
vehicle data from the OpenXC Platform. The primary platform for OpenXC
1515
applications is Android, but for prototyping and testing, often it is
1616
preferrable to use a low-overhead environment like Python when developing.
@@ -19,8 +19,7 @@ In addition to a port of the Android library API, the package also contains a
1919
number of command-line tools for connecting to the vehicle interface and
2020
manipulating previously recorded vehicle data.
2121

22-
This Python package works with Python 2.7. Unfortunately we had to drop
23-
support for Python 3 when we added the protobuf library as a dependency.
22+
This Python package works with Python 3.6. For python 2.7 support use version 0.15.0.
2423

2524
For general documentation on the OpenXC platform, visit the main `OpenXC site`_.
2625

docs/installation.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@ Install Python and Pip
55
----------------------
66

77
This library (obviously) requires a Python language runtime - the OpenXC library
8-
currently works with Python 2.7, but not Python 3.x.
8+
supports python 3.x only, for python 2.x support use version 0.15.0.
99

1010
- **Mac OS X and Linux**
1111

1212
Mac OS X and most Linux distributions already have a compatible Python
1313
installed. Run ``python --version`` from a terminal to check - you need a
14-
2.7.x version, such as 2.7.8.
14+
3.6.x version, such as 3.6.8.
1515

1616
- **Windows**
1717

18-
#. Download and run the `Python 2.7.x MSI installer <https://www.python.org/downloads/release/python-2716/>`_.
18+
#. Download and run the `Python 3.6.x MSI installer <https://www.python.org/downloads/>`_.
1919
Make sure to select to option to ``Add python.exe to Path``.
2020
#. Add the Python Scripts directory your PATH:
21-
``PATH=%PATH%;c:\Python27\Scripts``. If you aren't sure how to edit your
21+
``PATH=%PATH%;C:\Users\%username%\AppData\Local\Programs\Python\Python36-32\Scripts``. If you aren't sure how to edit your
2222
``PATH``, see `this guide for all versions of Windows
2323
<https://www.java.com/en/download/help/path.xml>`_. Log out and back in for
2424
the change to take effect.

openxc/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
which in turn needs access to this version information.)
77
"""
88

9-
VERSION = (0, 13, 0)
9+
VERSION = (1, 0, 0)
1010

1111
__version__ = '.'.join(map(str, VERSION))
1212

0 commit comments

Comments
 (0)