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 style deps #13495

Merged
merged 1 commit into from
Dec 12, 2022
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -118,11 +118,12 @@ def get_initial_config(self):
},
# We pin deps in order to make CI more stable/reliable.
'dependencies': [
'black==22.3.0',
'flake8==4.0.1',
'flake8-bugbear==21.9.2',
'flake8-logging-format==0.6.0',
# Keep in sync with: /datadog_checks_base/pyproject.toml and ../tox.py
'black==22.8.0',
'flake8==5.0.4',
'flake8-bugbear==22.9.11',
'flake8-logging-format==0.7.5',
'isort==5.10.1',
# Keep in sync with: /datadog_checks_base/pyproject.toml
'pydantic==1.10.2',
],
}
Expand All @@ -141,6 +142,7 @@ def get_initial_config(self):
'types-python-dateutil==2.8.2',
'types-pyyaml==5.4.10',
'types-requests==2.25.11',
'types-simplejson==3.17.5',
'types-six==1.16.2',
]
)
Expand Down