Skip to content
This repository has been archived by the owner on Aug 10, 2024. It is now read-only.

Commit

Permalink
Freeze versions of dependencies in dev environment
Browse files Browse the repository at this point in the history
The dependencies have changed a lot since we began this project and as
a result, some of the unittests fail with the latest versions of some
of the Azure and GCP dependencies. This change freezes the
dependencies in development environment to the last known versions
with which the tests passed successfully.

In future, if we can afford the time, ideally we should upgrade all
dependencies to the most recent version possible and update the tests
so that they pass with the most recent versions of dependencies.
  • Loading branch information
susam committed May 15, 2021
1 parent 2969842 commit 0cd2fd8
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ venv: FORCE
# and modification times.
deps: FORCE
touch venv
. ./venv && pip3 install -r usr-requirements.txt
. ./venv && pip3 install -r requirements.txt
. ./venv && pip3 install -r dev-requirements.txt

rmvenv: FORCE
Expand Down
44 changes: 44 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
adal==1.2.1
azure-common==1.1.24
azure-keyvault==1.1.0
azure-mgmt-compute==11.0.0
azure-mgmt-keyvault==2.0.0
azure-mgmt-monitor==0.7.0
azure-mgmt-network==9.0.0
azure-mgmt-rdbms==2.0.0
azure-mgmt-resource==8.0.1
azure-mgmt-sql==0.17.0
azure-mgmt-storage==8.0.0
azure-mgmt-web==0.44.0
azure-nspkg==3.0.2
cachetools==4.0.0
certifi==2019.3.9
cffi==1.14.0
chardet==3.0.4
cryptography==2.8
elasticsearch==7.12.1
google-api-python-client==1.7.11
google-auth==1.11.2
google-auth-httplib2==0.0.3
httplib2==0.17.0
idna==2.9
isodate==0.6.0
msrest==0.6.11
msrestazure==0.6.2
oauthlib==3.1.0
pyasn1==0.4.8
pyasn1-modules==0.2.8
pycparser==2.20
PyJWT==1.7.1
pymongo==3.10.1
python-dateutil==2.8.1
PyYAML==5.3
requests==2.23.0
requests-oauthlib==1.3.0
rsa==4.0
schedule==0.6.0
six==1.12.0
slackclient==1.3.1
uritemplate==3.0.1
urllib3==1.25.8
websocket-client==0.54.0

0 comments on commit 0cd2fd8

Please sign in to comment.