ticket2pr 0.3.2__tar.gz → 0.3.3__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 (43) hide show
  1. {ticket2pr-0.3.2/ticket2pr.egg-info → ticket2pr-0.3.3}/PKG-INFO +1 -1
  2. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/pyproject.toml +1 -1
  3. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/setup.py +1 -1
  4. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/src/cli.py +3 -1
  5. {ticket2pr-0.3.2 → ticket2pr-0.3.3/ticket2pr.egg-info}/PKG-INFO +1 -1
  6. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/LICENSE +0 -0
  7. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/README.md +0 -0
  8. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/setup.cfg +0 -0
  9. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/src/__init__.py +0 -0
  10. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/src/agents/__init__.py +0 -0
  11. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/src/agents/base.py +0 -0
  12. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/src/agents/commit_message.py +0 -0
  13. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/src/agents/pr_generator.py +0 -0
  14. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/src/agents/pre_commit_fixer.py +0 -0
  15. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/src/agents/ticket_solver.py +0 -0
  16. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/src/branch_creator.py +0 -0
  17. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/src/clients/__init__.py +0 -0
  18. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/src/clients/github_client.py +0 -0
  19. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/src/clients/jira_client.py +0 -0
  20. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/src/console_utils.py +0 -0
  21. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/src/enhanced_git.py +0 -0
  22. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/src/exceptions.py +0 -0
  23. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/src/logging_setup.py +0 -0
  24. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/src/main.py +0 -0
  25. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/src/pr_content.py +0 -0
  26. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/src/settings.py +0 -0
  27. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/src/settings_init.py +0 -0
  28. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/src/shell/__init__.py +0 -0
  29. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/src/shell/base.py +0 -0
  30. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/src/shell/pre_commit_runner.py +0 -0
  31. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/src/validators.py +0 -0
  32. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/src/workflow.py +0 -0
  33. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/tests/__init__.py +0 -0
  34. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/tests/integration/__init__.py +0 -0
  35. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/tests/integration/test_find_first_toml.py +0 -0
  36. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/tests/unit/__init__.py +0 -0
  37. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/tests/unit/test_nothing.py +0 -0
  38. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/ticket2pr.egg-info/SOURCES.txt +0 -0
  39. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/ticket2pr.egg-info/dependency_links.txt +0 -0
  40. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/ticket2pr.egg-info/entry_points.txt +0 -0
  41. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/ticket2pr.egg-info/not-zip-safe +0 -0
  42. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/ticket2pr.egg-info/requires.txt +0 -0
  43. {ticket2pr-0.3.2 → ticket2pr-0.3.3}/ticket2pr.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ticket2pr
3
- Version: 0.3.2
3
+ Version: 0.3.3
4
4
  Summary: Automate Jira ticket to GitHub PR workflow
5
5
  Home-page: https://github.com/bengabay11/ticket2pr
6
6
  Author: Ben Gabay
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "ticket2pr"
3
- version = "0.3.2"
3
+ version = "0.3.3"
4
4
  description = "Automate Jira ticket to GitHub PR workflow"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.13"
@@ -5,7 +5,7 @@ with open("README.md", encoding="utf-8") as f:
5
5
 
6
6
  setup(
7
7
  name="ticket2pr",
8
- version="0.3.2",
8
+ version="0.3.3",
9
9
  author="Ben Gabay",
10
10
  author_email="ben.gabay38@gmail.com",
11
11
  description="Automate Jira ticket to GitHub PR workflow",
@@ -98,7 +98,9 @@ def _setup_workspace(
98
98
  temp_dir: Path | None = None
99
99
  try:
100
100
  if workspace_path is None:
101
- temp_dir = Path(tempfile.mkdtemp(prefix="ticket2pr_"))
101
+ shared_temp_dir = Path(tempfile.gettempdir()) / "ticket2pr"
102
+ shared_temp_dir.mkdir(exist_ok=True)
103
+ temp_dir = Path(tempfile.mkdtemp(dir=shared_temp_dir))
102
104
  logger.info(
103
105
  "No workspace path provided, cloning repository to temp directory: %s", temp_dir
104
106
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ticket2pr
3
- Version: 0.3.2
3
+ Version: 0.3.3
4
4
  Summary: Automate Jira ticket to GitHub PR workflow
5
5
  Home-page: https://github.com/bengabay11/ticket2pr
6
6
  Author: Ben Gabay
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes