Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
tabulate
  • Loading branch information
jiasli committed Nov 4, 2021
commit 04c969b34ceb00822f3b8b4ca920cd9bb42ffcf7
2 changes: 1 addition & 1 deletion src/azure-cli/requirements.py3.Darwin.txt
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ scp==0.13.2
semver==2.13.0
six==1.14.0
sshtunnel==0.1.5
tabulate==0.8.3
tabulate==0.8.9
Copy link
Member Author

@jiasli jiasli Nov 4, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Old tabulate uses string to compare version, resulting in "10" < "3", which is certainly wrong.

    if python_version_tuple() >= ("3", "3", "0"):
        from collections.abc import Iterable
    else:
>       from collections import Iterable
E       ImportError: cannot import name 'Iterable' from 'collections' (/opt/hostedtoolcache/Python/3.10.0/x64/lib/python3.10/collections/__init__.py)

env/lib/python3.10/site-packages/tabulate.py:16: ImportError

This is fixed by astanin/python-tabulate#105.

urllib3==1.26.5
vsts==0.1.25
wcwidth==0.1.7
Expand Down
2 changes: 1 addition & 1 deletion src/azure-cli/requirements.py3.Linux.txt
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ scp==0.13.2
semver==2.13.0
six==1.14.0
sshtunnel==0.1.5
tabulate==0.8.3
tabulate==0.8.9
urllib3==1.26.5
vsts==0.1.25
wcwidth==0.1.7
Expand Down
2 changes: 1 addition & 1 deletion src/azure-cli/requirements.py3.windows.txt
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ scp==0.13.2
semver==2.13.0
six==1.14.0
sshtunnel==0.1.5
tabulate==0.8.3
tabulate==0.8.9
urllib3==1.26.5
vsts==0.1.25
wcwidth==0.1.7
Expand Down