Skip to content

Commit 2d05582

Browse files
author
rocky
committed
Fix up version string message
1 parent 3d6c4ac commit 2d05582

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

__pkginfo__.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
author='Rocky Bernstein, Ned Batchelder, Paul Swartz, Allison Kaptur and others'
22
author_email='[email protected]'
33
entry_points = {"console_scripts": ["xpython=xpython.__main__:main"]}
4+
5+
# Python-version | package | last-version |
6+
# -----------------------------------------
7+
# 3.2 | click | 4.0 |
8+
# 3.2 | pip | 7.1.2 |
9+
410
install_requires=["six", "xdis", "click"],
11+
12+
513
py_modules = None
614
short_desc = "Python cross-version byte-code interpeter"
715
url='http://github.com/rocky/xpython'

xpython/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from xdis import PYTHON_VERSION
1010

1111
def version_message():
12-
mess = "xpython, version %s running from Python %s" % (
12+
mess = "%s running from Python %s" % (
1313
VERSION, PYTHON_VERSION
1414
)
1515
return mess

0 commit comments

Comments
 (0)