From 3cd566260fb1c46e22e0d3958e26fd50d256987b Mon Sep 17 00:00:00 2001 From: pjt0620 Date: Tue, 3 Dec 2019 11:04:54 -0500 Subject: [PATCH 1/5] Fix how package data was included --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c6829e10..edda0455 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ ], url='http://github.com/openxc/openxc-python', packages=find_packages(exclude=["tests", "tests.*"]), - package_data={'openxc': ['generator/signals.cpp*'], 'openxc': ['tools/templates/dashboard.html*']}, + package_data={'openxc': ['generator/signals.cpp*', 'tools/templates/dashboard.html*']}, test_suite='nose.collector', tests_require=['nose'], install_requires=install_reqs, From c2625641cf2eaaa258b327c16436b2fb99cc9c21 Mon Sep 17 00:00:00 2001 From: pjt0620 Date: Tue, 3 Dec 2019 12:54:01 -0500 Subject: [PATCH 2/5] Update README.rst --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index fdd65a4e..65cf24f0 100644 --- a/README.rst +++ b/README.rst @@ -4,7 +4,7 @@ OpenXC for Python .. image:: https://github.com/openxc/openxc-python/raw/master/docs/_static/logo.png -:Version: 1.1.0 +:Version: 1.1.1 :Web: http://openxcplatform.com :Download: http://pypi.python.org/pypi/openxc/ :Documentation: http://python.openxcplatform.com From 99c7aba5a13e6ee6fabe547b743778eca3437f4e Mon Sep 17 00:00:00 2001 From: pjt0620 Date: Tue, 3 Dec 2019 12:56:05 -0500 Subject: [PATCH 3/5] Update CHANGELOG.rst --- CHANGELOG.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5bf4d787..5edd68db 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,10 @@ OpenXC Python Library Changelog =============================== +v1.1.1 +---------- +* Fix: Fixed Pip included files + v1.1.0 ---------- * Feature: Generate firmware now checks for duplicate entries in json and for improperly used keys and unrecognised attributes. From dcd459d29e0cd2a3f5dafd9b3a6e38799db07042 Mon Sep 17 00:00:00 2001 From: pjt0620 Date: Tue, 3 Dec 2019 12:56:28 -0500 Subject: [PATCH 4/5] Update version.py --- openxc/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openxc/version.py b/openxc/version.py index 3869d1a0..d2c2b444 100644 --- a/openxc/version.py +++ b/openxc/version.py @@ -6,7 +6,7 @@ which in turn needs access to this version information.) """ -VERSION = (1, 1, 0) +VERSION = (1, 1, 1) __version__ = '.'.join(map(str, VERSION)) From 0761ae3a76873ce89d743cf290d3505b3e36d034 Mon Sep 17 00:00:00 2001 From: pjt0620 Date: Tue, 3 Dec 2019 12:56:52 -0500 Subject: [PATCH 5/5] Update index.rst --- docs/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.rst b/docs/index.rst index 56dbdb0f..e56ab101 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -4,7 +4,7 @@ OpenXC for Python .. image:: https://github.com/openxc/openxc-python/raw/master/docs/_static/logo.png -:Version: 1.1.0 +:Version: 1.1.1 :Web: http://openxcplatform.com :Download: http://pypi.python.org/pypi/openxc/ :Documentation: http://python.openxcplatform.com