Skip to content
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
8 changes: 4 additions & 4 deletions environment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ dependencies:
- setuptools<81
- pip:
- black>=24.0.0
- cli-core-yo>=0.5.1
- cli-core-yo==0.5.2
- boto3>=1.34.0
- daylily-cognito==0.4.1
- daylily-tapdb==3.2.2
- daylily-cognito==0.4.2
- daylily-tapdb==3.2.3
- moto>=5.0.0
- fastapi>=0.110.0
- httpx>=0.27.2
Expand All @@ -62,5 +62,5 @@ dependencies:
- sqlalchemy>=2.0.23
- starlette>=0.35.1
- uvicorn>=0.28.0
- zebra-day==3.5.2
- zebra-day==5.0.6
- daylily-carrier-tracking==0.5.1
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.12"
dependencies = [
"cli-core-yo>=0.5.1",
"daylily-tapdb==3.2.2",
"daylily-cognito==0.4.1",
"cli-core-yo==0.5.2",
"daylily-tapdb==3.2.3",
"daylily-cognito==0.4.2",
"boto3>=1.34.0",
"fastapi>=0.110.0",
"httpx>=0.27.2",
Expand All @@ -45,7 +45,7 @@ dependencies = [
"sqlalchemy>=2.0.23",
"starlette>=0.35.1",
"uvicorn>=0.28.0",
"zebra-day==4.0.0",
"zebra-day==5.0.6",
"daylily-carrier-tracking==0.5.1",
]
classifiers = [
Expand Down
4 changes: 2 additions & 2 deletions tests/test_deploy_contract.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

def test_root_environment_contract_uses_environment_yaml() -> None:
assert (PROJECT_ROOT / "environment.yaml").is_file()
assert not (PROJECT_ROOT / "bloom_env.yaml").exists()
assert not (PROJECT_ROOT / "environment").with_suffix(".yml").exists()
assert not (PROJECT_ROOT / "requirements.txt").exists()


Expand All @@ -14,7 +14,7 @@ def test_activate_only_references_root_environment_yaml() -> None:
environment = (PROJECT_ROOT / "environment.yaml").read_text(encoding="utf-8")

assert "environment.yaml" in activate
assert "bloom_env.yaml" not in activate
assert "environment" + ".yml" not in activate
assert "requirements.txt" not in activate
assert "pip install --no-deps -e" in activate
assert "-e ." not in environment
Loading