Skip to content

Commit 1cae7ae

Browse files
committed
[fix] bump and fix file sorting
1 parent f5e22e0 commit 1cae7ae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pypi_server/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
("Dmitry Orlov", "me@mosquito.su")
1010
]
1111

12-
version_info = (0, 3, 29)
12+
version_info = (0, 3, 30)
1313

1414
__version__ = ".".join(map(str, version_info))
1515
__author__ = ", ".join("{0} <{1}>".format(*author) for author in author_info)

pypi_server/handlers/index.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ def find(base_dir, path, pattern):
4040
rel_file = "/".join(os.path.split(os.path.join(root, f))).replace("/".join(os.path.split(base_dir)), '/')
4141
file_list.append("/{}".format(rel_file.strip("/")))
4242

43-
return file_list
43+
return sorted(file_list)

0 commit comments

Comments
 (0)