From 76263f8d28af5f900188b2c5de2a9b497b560523 Mon Sep 17 00:00:00 2001 From: Edward J M Easton Date: Wed, 2 Sep 2015 11:45:23 +0100 Subject: [PATCH] Fix RST rendering on pypi.python.org --- CHANGES.md | 12 ++++++------ README.md | 1 + setup.py | 2 +- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 73f082e22..79a28efa8 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,30 +1,30 @@ ## Changelog -### 1.5 +### 1.5 (2015-09-02) * Always use the primary cluster node for 'has_symbol()', it's safer -### 1.4 +### 1.4 (2015-08-19) * Bugfixes for timezone handling, now ensures use of non-naive datetimes * Bugfix for tickstore read missing images -### 1.3 +### 1.3 (2015-08-011) * Improvements to command-line control scripts for users and libraries * Bugfix for pickling top-level Arctic object -### 1.2 +### 1.2 (2015-06-29) * Allow snapshotting a range of versions in the VersionStore, and snapshot all versions by default. -### 1.1 +### 1.1 (2015-06-16) * Bugfix for backwards-compatible unpickling of bson-encoded data * Added switch for enabling parallel lz4 compression -### 1.0 +### 1.0 (2015-06-14) * Initial public release \ No newline at end of file diff --git a/README.md b/README.md index 3c4b32f9f..2f0ddb670 100644 --- a/README.md +++ b/README.md @@ -133,3 +133,4 @@ Contributions welcome! ## License Arctic is licensed under the GNU LGPL v2.1. A copy of which is included in [LICENSE](LICENSE) + diff --git a/setup.py b/setup.py index 2352a5a67..f7315dfb9 100644 --- a/setup.py +++ b/setup.py @@ -83,7 +83,7 @@ def run_tests(self): keywords=["ahl", "keyvalue", "tickstore", "mongo", "timeseries", ], url="https://github.com/manahl/arctic", packages=find_packages(), - long_description=long_description + changelog, + long_description='\n'.join((long_description, changelog)), cmdclass={'test': PyTest}, ext_modules=[compress], setup_requires=["setuptools_cython",