Skip to content

Commit

Permalink
BUG: Reorder deps in show_versions for setuptools issue (#1019)
Browse files Browse the repository at this point in the history
  • Loading branch information
snowman2 committed Jan 26, 2022
1 parent eccc32a commit 3b45929
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproj/_show_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def _get_deps_info():
deps_info: dict
version information on relevant Python libraries
"""
deps = ["certifi", "pip", "setuptools", "Cython"]
deps = ["certifi", "Cython", "setuptools", "pip"]

def get_version(module):
try:
Expand Down

0 comments on commit 3b45929

Please sign in to comment.