Skip to content

Commit

Permalink
Fix the elasticsearch versions
Browse files Browse the repository at this point in the history
  • Loading branch information
athiruma committed Jun 19, 2024
1 parent f5c9307 commit e0f75c7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ azure-mgmt-resource==23.0.1
azure-mgmt-subscription==3.1.1
boto3==1.26.4
botocore==1.29.4
elasticsearch==7.17.9
elasticsearch==7.13.4 # opensearch 1.2.4 for elasticsearch
elasticsearch-dsl==7.4.0
google-api-python-client==2.57.0
google-auth-httplib2==0.1.0
Expand All @@ -19,6 +19,7 @@ google-cloud-bigquery==3.5.0
google-cloud-billing==1.9.1
ibm_platform_services==0.27.0
myst-parser==1.0.0
numpy<=1.26.4 # opensearch 1.2.4 for elasticsearch
oauthlib~=3.1.1
pandas
PyAthena[Pandas]==3.0.5
Expand Down
15 changes: 8 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,17 +46,22 @@
'azure-mgmt-billing==6.0.0', # azure billing management
'azure-mgmt-costmanagement==3.0.0', # azure cost management
'azure-mgmt-subscription==3.1.1', # azure subscriptions
'azure-mgmt-resource==23.0.1',
'azure-mgmt-compute==30.1.0',
'azure-mgmt-network==25.0.0',
'azure-mgmt-monitor==6.0.2',
'boto3==1.26.4', # required by c7n 0.9.14
'botocore==1.29.4', # required by c7n 0.9.14
'elasticsearch-dsl==7.4.0',
'elasticsearch==7.17.9', # depend on elasticsearch server
'elasticsearch-dsl==7.4.0', # opensearch 1.2.4 for elasticsearch
'elasticsearch==7.13.4', # depend on elasticsearch server
'google-api-python-client==2.57.0', # google drive
'google-auth-httplib2==0.1.0', # google drive
'google-auth-oauthlib==0.5.2', # google drive
'google-cloud-bigquery==3.5.0', # google cloud cost
'google-cloud-billing==1.9.1', # google cloud cost
'ibm_platform_services==0.27.0', # IBM Usage reports
'myst-parser==1.0.0', # readthedocs
'numpy<=1.26.4', # opensearch 1.2.4 for elasticsearch
'oauthlib~=3.1.1', # required by jira
'pandas', # latest: aggregate ec2/ebs cluster data
'PyAthena[Pandas]==3.0.5', # AWS Athena package
Expand All @@ -70,11 +75,7 @@
'sphinx==5.0.0', # readthedocs
'typeguard==2.13.3', # checking types
'typing==3.7.4.3',
'urllib3==1.26.19', # required by jira
'azure-mgmt-resource==23.0.1',
'azure-mgmt-compute==30.1.0',
'azure-mgmt-network==25.0.0',
'azure-mgmt-monitor==6.0.2'
'urllib3==1.26.19' # required by jira
],

setup_requires=['pytest', 'pytest-runner', 'wheel', 'coverage'],
Expand Down
3 changes: 2 additions & 1 deletion tests_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ azure-mgmt-costmanagement==3.0.0
azure-mgmt-monitor==6.0.2
azure-mgmt-subscription==3.1.1
boto3==1.26.4
elasticsearch==7.17.9
elasticsearch==7.13.4
elasticsearch-dsl==7.4.0
freezegun==1.5.1
moto==4.0.1
numpy<=1.26.4
oauthlib~=3.1.1
pandas
pre-commit==3.5.0
Expand Down

0 comments on commit e0f75c7

Please sign in to comment.