X Tutup
Skip to content

Commit b6b66fe

Browse files
committed
Add extension to CHANGELOG and AUTHORS.
This makes it easier to find when there's a reference to a file. I've also updated the docs to not be a symlink to changelog but instead an explicit include.
1 parent c94c8f8 commit b6b66fe

File tree

6 files changed

+7
-5
lines changed

6 files changed

+7
-5
lines changed
File renamed without changes.
File renamed without changes.

MANIFEST.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
include .pycheckrc
2-
include AUTHORS
3-
include CHANGELOG
2+
include AUTHORS.rst
3+
include CHANGELOG.rst
44
include LICENSE
55
include data/bpython.png
66
include data/org.bpython-interpreter.bpython.desktop

bpython/args.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def version_banner(base="bpython"):
5555

5656

5757
def copyright_banner():
58-
return "{} See AUTHORS for details.".format(__copyright__)
58+
return "{} See AUTHORS.rst for details.".format(__copyright__)
5959

6060

6161
def parse(args, extras=None, ignore_stdin=False):

doc/sphinx/source/authors.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ Authors
55
If you contributed to bpython and want to be on this list please find us
66
(:ref:`community`) and let us know!
77

8-
.. include:: ../../../AUTHORS
8+
.. include:: ../../../AUTHORS.rst

doc/sphinx/source/changelog.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

doc/sphinx/source/changelog.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.. _changelog:
2+
3+
.. include:: ../../../CHANGELOG.rst

0 commit comments

Comments
 (0)
X Tutup