taskflow-agent 0.6.1__tar.gz → 0.6.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (26) hide show
  1. {taskflow_agent-0.6.1 → taskflow_agent-0.6.2}/PKG-INFO +2 -2
  2. {taskflow_agent-0.6.1 → taskflow_agent-0.6.2}/pyproject.toml +2 -2
  3. {taskflow_agent-0.6.1 → taskflow_agent-0.6.2}/.gitignore +0 -0
  4. {taskflow_agent-0.6.1 → taskflow_agent-0.6.2}/LICENSE +0 -0
  5. {taskflow_agent-0.6.1 → taskflow_agent-0.6.2}/Makefile +0 -0
  6. {taskflow_agent-0.6.1 → taskflow_agent-0.6.2}/README.md +0 -0
  7. {taskflow_agent-0.6.1 → taskflow_agent-0.6.2}/src/__init__.py +0 -0
  8. {taskflow_agent-0.6.1 → taskflow_agent-0.6.2}/src/approval_policy.py +0 -0
  9. {taskflow_agent-0.6.1 → taskflow_agent-0.6.2}/src/calendar_context.py +0 -0
  10. {taskflow_agent-0.6.1 → taskflow_agent-0.6.2}/src/contexts.py +0 -0
  11. {taskflow_agent-0.6.1 → taskflow_agent-0.6.2}/src/db.py +0 -0
  12. {taskflow_agent-0.6.1 → taskflow_agent-0.6.2}/src/development.py +0 -0
  13. {taskflow_agent-0.6.1 → taskflow_agent-0.6.2}/src/development_queue.py +0 -0
  14. {taskflow_agent-0.6.1 → taskflow_agent-0.6.2}/src/development_sources.py +0 -0
  15. {taskflow_agent-0.6.1 → taskflow_agent-0.6.2}/src/dotenv_loader.py +0 -0
  16. {taskflow_agent-0.6.1 → taskflow_agent-0.6.2}/src/ideas.py +0 -0
  17. {taskflow_agent-0.6.1 → taskflow_agent-0.6.2}/src/importer.py +0 -0
  18. {taskflow_agent-0.6.1 → taskflow_agent-0.6.2}/src/models.py +0 -0
  19. {taskflow_agent-0.6.1 → taskflow_agent-0.6.2}/src/repos.py +0 -0
  20. {taskflow_agent-0.6.1 → taskflow_agent-0.6.2}/src/server.py +0 -0
  21. {taskflow_agent-0.6.1 → taskflow_agent-0.6.2}/src/sub_agent_handler.py +0 -0
  22. {taskflow_agent-0.6.1 → taskflow_agent-0.6.2}/src/web.py +0 -0
  23. {taskflow_agent-0.6.1 → taskflow_agent-0.6.2}/src/workflows.py +0 -0
  24. {taskflow_agent-0.6.1 → taskflow_agent-0.6.2}/static/development.css +0 -0
  25. {taskflow_agent-0.6.1 → taskflow_agent-0.6.2}/static/development.js +0 -0
  26. {taskflow_agent-0.6.1 → taskflow_agent-0.6.2}/static/index.html +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.5
2
2
  Name: taskflow-agent
3
- Version: 0.6.1
3
+ Version: 0.6.2
4
4
  Summary: Lightweight project and task manager with MCP tools for Claude Code
5
5
  Project-URL: Repository, https://github.com/henrysouchien/taskflow-agent
6
6
  Author: Henry Chien
@@ -16,7 +16,7 @@ Classifier: Programming Language :: Python :: 3.11
16
16
  Classifier: Programming Language :: Python :: 3.12
17
17
  Classifier: Topic :: Office/Business :: Scheduling
18
18
  Requires-Python: >=3.10
19
- Requires-Dist: mcp>=1.0.0
19
+ Requires-Dist: mcp<2,>=1.30.0
20
20
  Provides-Extra: web
21
21
  Requires-Dist: fastapi; extra == 'web'
22
22
  Requires-Dist: python-dotenv; extra == 'web'
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "taskflow-agent"
7
- version = "0.6.1"
7
+ version = "0.6.2"
8
8
  description = "Lightweight project and task manager with MCP tools for Claude Code"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -24,7 +24,7 @@ classifiers = [
24
24
  "Topic :: Office/Business :: Scheduling",
25
25
  ]
26
26
  dependencies = [
27
- "mcp>=1.0.0",
27
+ "mcp>=1.30.0,<2",
28
28
  ]
29
29
 
30
30
  [project.optional-dependencies]
File without changes
File without changes
File without changes
File without changes