Skip to content

Commit ee613d4

Browse files
author
Marshall Jones
committed
Merge commit '288a3c43354cd2f36837be9f58160ca14454d63f'
2 parents d38ab43 + 288a3c4 commit ee613d4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
include README.mkd
1+
include README.md
22
include requirements.txt
33
include test-requirements.txt

README.mkd renamed to README.md

File renamed without changes.

balanced/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '0.11.5'
1+
__version__ = '0.11.6'
22
from collections import defaultdict
33
import contextlib
44

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Balanced Python client library.
33
4-
See ``README.mkd`` for usage advice.
4+
See ``README.md`` for usage advice.
55
"""
66
import os
77
import pickle
@@ -73,7 +73,7 @@ def _get_version():
7373

7474

7575
def _get_long_description():
76-
path = os.path.join(PATH_TO_FILE, 'README.mkd')
76+
path = os.path.join(PATH_TO_FILE, 'README.md')
7777
fo = open(path)
7878
try:
7979
return fo.read()

0 commit comments

Comments
 (0)