Skip to content

Commit

Permalink
MNT fix strict comparison in version listing (scikit-learn#19163)
Browse files Browse the repository at this point in the history
  • Loading branch information
alfaro96 authored Jan 13, 2021
1 parent d6435b7 commit a5d858c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build_tools/circle/list_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def human_readable_data_quantity(quantity, multiple=1024):


def get_file_extension(version):
if version == 'dev':
if 'dev' in version:
# The 'dev' branch should be explictly handled
return 'zip'

Expand Down

0 comments on commit a5d858c

Please sign in to comment.