diff --git a/docs/changelog.rst b/docs/changelog.rst deleted file mode 100644 --- a/docs/changelog.rst +++ /dev/null @@ -1,10 +0,0 @@ -.. _changelog: - -========= -Changelog -========= - -Kallithea project doesn't keep its changelog here. We refer you to our `Mercurial logs`__. - - -.. __: https://kallithea-scm.org/repos/kallithea/changelog diff --git a/docs/index.rst b/docs/index.rst --- a/docs/index.rst +++ b/docs/index.rst @@ -55,7 +55,6 @@ Kallithea Documentation contributing dev/translation dev/dbmigrations - changelog **API** diff --git a/scripts/manifest b/scripts/manifest --- a/scripts/manifest +++ b/scripts/manifest @@ -23,7 +23,6 @@ docs/Makefile docs/api/ docs/api/api.rst docs/api/models.rst -docs/changelog.rst docs/conf.py docs/contributing.rst docs/images/ diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -97,15 +97,12 @@ keywords = ' '.join([ # long description README_FILE = 'README.rst' -CHANGELOG_FILE = 'docs/changelog.rst' try: - long_description = open(README_FILE).read() + '\n\n' + \ - open(CHANGELOG_FILE).read() - + long_description = open(README_FILE).read() except IOError as err: sys.stderr.write( - "[WARNING] Cannot find file specified as long_description (%s)\n or " - "changelog (%s) skipping that file" % (README_FILE, CHANGELOG_FILE) + "[WARNING] Cannot find file specified as long_description (%s)\n" + % README_FILE ) long_description = description