From ca3eb3aa739f864a0e19c803c601cdc8524420c5 Mon Sep 17 00:00:00 2001
From: SP Mohanty <spmohanty91@gmail.com>
Date: Wed, 3 Jul 2019 07:26:26 +0200
Subject: [PATCH] Remove HISTORY from long description of the package

---
 CONTRIBUTING.rst | 4 ++--
 HISTORY.rst      | 8 --------
 docs/history.rst | 1 -
 docs/index.rst   | 1 -
 setup.py         | 5 +----
 5 files changed, 3 insertions(+), 16 deletions(-)
 delete mode 100644 HISTORY.rst
 delete mode 100644 docs/history.rst

diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst
index a0bc61a4..8d794d59 100644
--- a/CONTRIBUTING.rst
+++ b/CONTRIBUTING.rst
@@ -124,11 +124,11 @@ Deploying
 ---------
 
 A reminder for the maintainers on how to deploy.
-Make sure all your changes are committed (including an entry in HISTORY.rst).
+Make sure all your changes are committed .
 Then run::
 
 $ bumpversion patch # possible: major / minor / patch
 $ git push
 $ git push --tags
 
-Travis will then deploy to PyPI if tests pass. (To be configured properly by Mohanty)
+TODO: Travis will then deploy to PyPI if tests pass. (To be configured properly by Mohanty)
diff --git a/HISTORY.rst b/HISTORY.rst
deleted file mode 100644
index 9ae17c81..00000000
--- a/HISTORY.rst
+++ /dev/null
@@ -1,8 +0,0 @@
-=======
-History
-=======
-
-0.1.0 (2019-04-03)
-------------------
-
-* First release on PyPI.
diff --git a/docs/history.rst b/docs/history.rst
deleted file mode 100644
index 25064996..00000000
--- a/docs/history.rst
+++ /dev/null
@@ -1 +0,0 @@
-.. include:: ../HISTORY.rst
diff --git a/docs/index.rst b/docs/index.rst
index f440aad8..791d40c0 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -12,7 +12,6 @@ Welcome to flatland's documentation!
    FAQ
    contributing
    authors
-   history
 
 Indices and tables
 ==================
diff --git a/setup.py b/setup.py
index 05648be8..3cc28b34 100644
--- a/setup.py
+++ b/setup.py
@@ -12,9 +12,6 @@ assert sys.version_info >= (3, 6)
 with open('README.rst') as readme_file:
     readme = readme_file.read()
 
-with open('HISTORY.rst') as history_file:
-    history = history_file.read()
-
 # install pycairo on Windows
 if os.name == 'nt':
     p = platform.architecture()
@@ -107,7 +104,7 @@ setup(
         ],
     },
     install_requires=requirements,
-    long_description=readme + '\n\n' + history,
+    long_description=readme,
     include_package_data=True,
     keywords='flatland',
     name='flatland-rl',
-- 
GitLab