Skip to content

Commit 7e40aa7

Browse files
fix dependabot, docker compose, and formatting
1 parent ae6600b commit 7e40aa7

File tree

4 files changed

+43
-37
lines changed

4 files changed

+43
-37
lines changed

poetry.lock

Lines changed: 40 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ langchain-openai = "^0.3.2"
4040
testcontainers = "^4.9.1"
4141
langchain-anthropic = "^0.3.5"
4242
isort = "^6.0.0"
43+
cryptography = { version = ">=44.0.1", markers = "python_version > '3.9.1'" }
4344

4445
[tool.pytest.ini_options]
4546
# --strict-markers will raise errors on unknown marks.

tests/conftest.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ def redis_container(request):
2727

2828
# Set the Compose project name so containers do not clash across workers
2929
os.environ["COMPOSE_PROJECT_NAME"] = f"redis_test_{worker_id}"
30+
os.environ.setdefault("REDIS_VERSION", "latest")
3031
os.environ.setdefault("REDIS_IMAGE", "redis/redis-stack-server:latest")
3132

3233
compose = DockerCompose(

tests/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: "3.9"
22
services:
33
redis:
4-
image: "redis/redis-stack:${REDIS_VERSION}"
4+
image: "${REDIS_IMAGE}"
55
ports:
66
- "6379"
77
environment:

0 commit comments

Comments
 (0)