Skip to content

Commit e71c7b6

Browse files
committed
order
1 parent 97815dd commit e71c7b6

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

pandas/util/_print_versions.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,7 @@ def get_sys_info():
6060

6161
def show_versions(as_json=False):
6262
sys_info = get_sys_info()
63-
deps = list(VERSIONS)
64-
deps.extend([
63+
deps = [
6564
'pandas',
6665
# required
6766
'numpy',
@@ -88,7 +87,9 @@ def show_versions(as_json=False):
8887
# Other, not imported.
8988
"IPython",
9089
"pandas_datareader",
91-
])
90+
]
91+
92+
deps.extend(list(VERSIONS))
9293

9394
deps_blob = list()
9495
for modname in deps:

0 commit comments

Comments
 (0)