Skip to content

Commit

Permalink
Update setup.py & requirements.txt & requirements-dev.txt
Browse files Browse the repository at this point in the history
■setup.py & requirements.txt

apscheduler>=3.9.1.post1,<4.0 to apscheduler>=3.10.4,<4.0
boto3>=1.26.30 to boto3>=1.29.6
cffi>=1.15.1 to cffi>=1.16.0
croniter>=1.3.8 to croniter>=2.0.1
jira>=3.4.1 to jira>=3.5.2
jsonpointer>=2.3 to jsonpointer>=2.4
jsonschema>=4.17.3 to jsonschema>=4.20.0
prettytable>=3.8.0to prettytable>=3.9.0
prometheus_client>=0.15.0 to prometheus_client>=0.19.0
PyYAML>=6.0 to PyYAML>=6.0.1
requests>=2.28.1 to requests>=2.31.0
tencentcloud-sdk-python>=3.0.795 to tencentcloud-sdk-python>=3.0.1038
texttable>=1.6.7 to texttable>=1.7.0
twilio>=7.16.0 to twilio>=8.10.2

■requirements-dev.txt

pylint 2.17.5 to 3.0.2
pytest 7.4.2 to 7.4.3
pytest-xdist 3.3.1 to 3.5.0
  • Loading branch information
nsano-rururu committed Nov 26, 2023
1 parent bfbdd4d commit a6665d6
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 31 deletions.
6 changes: 3 additions & 3 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
flake8
flake8-absolute-import
pre-commit
pylint==2.17.5
pytest==7.4.2
pylint==3.0.2
pytest==7.4.3
pytest-cov==4.1.0
pytest-xdist==3.3.1
pytest-xdist==3.5.0
setuptools
sphinx==7.2.6
sphinx_rtd_theme==1.3.0
Expand Down
28 changes: 14 additions & 14 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
apscheduler>=3.9.1.post1,<4.0
apscheduler>=3.10.4,<4.0
aws-requests-auth>=0.4.3
boto3>=1.26.30
cffi>=1.15.1
croniter>=1.3.8
boto3>=1.29.6
cffi>=1.16.0
croniter>=2.0.1
elasticsearch==7.10.1
envparse>=0.2.0
exotel==0.1.5
Jinja2>=3.1.2
jira>=3.4.1
jsonpointer>=2.3
jsonschema>=4.17.3
prettytable>=3.8.0
jira>=3.5.2
jsonpointer>=2.4
jsonschema>=4.20.0
prettytable>=3.9.0
prison>=0.2.1
prometheus_client>=0.15.0
prometheus_client>=0.19.0
python-dateutil>=2.8.2
PyYAML>=6.0
PyYAML>=6.0.1
py-zabbix>=1.1.7
requests>=2.28.1
requests>=2.31.0
sortedcontainers>=2.4.0
statsd-tags==3.2.1.post1
stomp.py>=8.1.0
tencentcloud-sdk-python>=3.0.795
texttable>=1.6.7
twilio>=7.16.0
tencentcloud-sdk-python>=3.0.1038
texttable>=1.7.0
twilio>=8.10.2
tzlocal==2.1
28 changes: 14 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,31 +32,31 @@
packages=find_packages(exclude=["tests"]),
package_data={'elastalert': ['schema.yaml', 'es_mappings/**/*.json']},
install_requires=[
'apscheduler>=3.9.1.post1,<4.0',
'apscheduler>=3.10.4,<4.0',
'aws-requests-auth>=0.4.3',
'boto3>=1.26.30',
'cffi>=1.15.1',
'croniter>=1.3.8',
'boto3>=1.29.6',
'cffi>=1.16.0',
'croniter>=2.0.1',
'elasticsearch==7.10.1',
'envparse>=0.2.0',
'exotel==0.1.5',
'Jinja2>=3.1.2',
'jira>=3.4.1',
'jsonpointer>=2.3',
'jsonschema>=4.17.3',
'prettytable>=3.8.0',
'jira>=3.5.2',
'jsonpointer>=2.4',
'jsonschema>=4.20.0',
'prettytable>=3.9.0',
'prison>=0.2.1',
'prometheus_client>=0.15.0',
'prometheus_client>=0.19.0',
'python-dateutil>=2.8.2',
'PyYAML>=6.0',
'PyYAML>=6.0.1',
'py-zabbix>=1.1.7',
'requests>=2.28.1',
'requests>=2.31.0',
'sortedcontainers>=2.4.0',
'statsd-tags==3.2.1.post1',
'stomp.py>=8.1.0',
'tencentcloud-sdk-python>=3.0.795',
'texttable>=1.6.7',
'twilio>=7.16.0',
'tencentcloud-sdk-python>=3.0.1038',
'texttable>=1.7.0',
'twilio>=8.10.2',
'tzlocal==2.1'
]
)

0 comments on commit a6665d6

Please sign in to comment.