Skip to content

Commit

Permalink
{CI} Fix dependency version in setup.py, drop eoan package (#16306)
Browse files Browse the repository at this point in the history
  • Loading branch information
fengzhou-msft authored Dec 17, 2020
1 parent 4bed6cc commit ba4cd3b
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
3 changes: 0 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -671,9 +671,6 @@ jobs:
Bionic:
deb_system: ubuntu
distro: bionic
Eoan:
deb_system: ubuntu
distro: eoan
Focal:
deb_system: ubuntu
distro: focal
Expand Down
2 changes: 1 addition & 1 deletion scripts/release/debian/test_deb_in_docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ apt install -y apt-transport-https git gcc python3-dev

# The distros that need libssl1.1
case ${DISTRO} in
bionic|buster|eoan|focal|groovy) apt install -y libssl1.1;;
bionic|buster|focal|groovy) apt install -y libssl1.1;;
*) :;;
esac

Expand Down
2 changes: 1 addition & 1 deletion src/azure-cli-core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
DEPENDENCIES = [
'adal~=1.2.3',
'argcomplete~=1.8',
'azure-cli-telemetry==1.0.6',
'azure-cli-telemetry==1.0.6.*',
'colorama~=0.4.1',
'humanfriendly>=4.7,<9.0',
'jmespath',
Expand Down
2 changes: 1 addition & 1 deletion src/azure-cli/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
'antlr4-python3-runtime~=4.7.2',
'azure-appconfiguration~=1.1.1',
'azure-batch~=10.0.0',
'azure-cli-core=={}.*'.format(VERSION),
'azure-cli-core=={}.*'.format(".".join(VERSION.split(".")[:3])),
'azure-cosmos~=3.0,>=3.0.2',
'azure-datalake-store~=0.0.49',
'azure-functions-devops-build~=0.0.22',
Expand Down

0 comments on commit ba4cd3b

Please sign in to comment.