Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the elasticsearch, numpy versions #808

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
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
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
13 changes: 7 additions & 6 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==7.13.4', # opensearch 1.2.4 for elasticsearch
'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