Skip to content

Commit a5d858c

Browse files
authored
MNT fix strict comparison in version listing (scikit-learn#19163)
1 parent d6435b7 commit a5d858c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_tools/circle/list_versions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def human_readable_data_quantity(quantity, multiple=1024):
3434

3535

3636
def get_file_extension(version):
37-
if version == 'dev':
37+
if 'dev' in version:
3838
# The 'dev' branch should be explictly handled
3939
return 'zip'
4040

0 commit comments

Comments
 (0)