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

Updates 20240501 #1008

Merged
merged 10 commits into from
May 1, 2024
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -120,7 +120,7 @@ services:
# https://hub.docker.com/r/localstack/localstack/
# localstack running a fake S3 and SQS
localstack:
image: localstack/localstack:1.1.0
image: localstack/localstack:3.4.0
environment:
- SERVICES=s3,sqs
- DEFAULT_REGION=us-east-1
9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
[tool.ruff]
line-length = 88
target-version = "py311"

[tool.ruff.lint]
# Enable pycodestyle (E), pyflakes (F), bugbear (B), and bandit (S) rules
select = ["E", "F", "B", "S"]
line-length = 88
# Ignore line length violations that aren't fixed by formatting
ignore = ["E501"]
target-version = "py311"

[tool.ruff.flake8-quotes]
[tool.ruff.lint.flake8-quotes]
docstring-quotes = "double"

[tool.ruff.lint.per-file-ignores]
40 changes: 20 additions & 20 deletions requirements.in
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
# Production requirements
attrs==23.1.0
boto3==1.28.78
botocore==1.31.78
datadog==0.47.0
dockerflow==2022.8.0
everett==3.2.0
falcon==3.1.1
fillmore==1.1.0
google-cloud-storage
attrs==23.2.0
boto3==1.34.95
botocore==1.34.95
datadog==0.49.1
dockerflow==2024.4.2
everett==3.3.0
falcon==3.1.3
fillmore==1.2.0
google-cloud-storage==2.16.0
gunicorn==22.0.0
isodate==0.6.1
markus==4.2.0
sentry-sdk==1.34.0
google-cloud-pubsub==2.19.3
sentry-sdk==1.45.0
google-cloud-pubsub==2.21.1

# Development requirements
bandit==1.7.5
bandit==1.7.8
click==8.1.7
freezegun==1.2.2
more-itertools==10.1.0
pip-tools==7.3.0
pytest==7.4.3
freezegun==1.5.0
more-itertools==10.2.0
pip-tools==7.4.1
pytest==8.2.0
requests==2.31.0
ruff==0.1.3
Sphinx==7.2.6
sphinx-rtd-theme==1.3.0
ruff==0.4.2
Sphinx==7.3.7
sphinx-rtd-theme==2.0.0
urlwait==1.0
werkzeug==3.0.1
werkzeug==3.0.2
Loading