Skip to content

Commit 6ffdba0

Browse files
committed
fix: remove hardcoded version assertions from tests and add pre-release notice
- Removed version assertion from test_install_flow.py - Removed version assertion from test_parser.py - Added pre-release notice to README.md
1 parent c350fff commit 6ffdba0

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# DeepWork
22

3+
> **Pre-release**: This project is in early development (v0.1.0). APIs and features may change.
4+
35
> Framework for enabling AI agents to perform complex, multi-step work tasks
46
57
DeepWork is a tool for defining and executing multi-step workflows with AI coding assistants like Claude Code, Google Gemini, and GitHub Copilot. It enables you to decompose complex tasks into manageable steps, with clear inputs, outputs, and dependencies.

tests/integration/test_install_flow.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ def test_install_with_claude(self, mock_claude_project: Path) -> None:
3838
config = load_yaml(config_file)
3939
assert config is not None
4040
assert "claude" in config["platforms"]
41-
assert config["version"] == "1.0.0"
4241

4342
# Verify core commands were created
4443
claude_dir = mock_claude_project / ".claude" / "commands"

tests/unit/test_parser.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,6 @@ def test_parses_simple_job(self, fixtures_dir: Path) -> None:
237237
job = parse_job_definition(job_dir)
238238

239239
assert job.name == "simple_job"
240-
assert job.version == "1.0.0"
241240
assert job.summary == "A simple single-step job for testing"
242241
assert "DeepWork framework" in job.description # Multi-line description
243242
assert len(job.steps) == 1

0 commit comments

Comments
 (0)