timeout-dead 0.1.0__tar.gz → 0.1.1__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 (23) hide show
  1. {timeout_dead-0.1.0 → timeout_dead-0.1.1}/PKG-INFO +1 -1
  2. {timeout_dead-0.1.0 → timeout_dead-0.1.1}/src/timeout_dead/_version.py +3 -3
  3. {timeout_dead-0.1.0 → timeout_dead-0.1.1}/src/timeout_dead/cli.py +1 -1
  4. {timeout_dead-0.1.0 → timeout_dead-0.1.1}/.github/workflows/publish.yml +0 -0
  5. {timeout_dead-0.1.0 → timeout_dead-0.1.1}/.github/workflows/pyright.yml +0 -0
  6. {timeout_dead-0.1.0 → timeout_dead-0.1.1}/.github/workflows/ruff.yml +0 -0
  7. {timeout_dead-0.1.0 → timeout_dead-0.1.1}/.github/workflows/tests.yml +0 -0
  8. {timeout_dead-0.1.0 → timeout_dead-0.1.1}/.gitignore +0 -0
  9. {timeout_dead-0.1.0 → timeout_dead-0.1.1}/AGENTS.md +0 -0
  10. {timeout_dead-0.1.0 → timeout_dead-0.1.1}/CODE-STYLE.md +0 -0
  11. {timeout_dead-0.1.0 → timeout_dead-0.1.1}/CONTRIBUTING.md +0 -0
  12. {timeout_dead-0.1.0 → timeout_dead-0.1.1}/LICENSE +0 -0
  13. {timeout_dead-0.1.0 → timeout_dead-0.1.1}/MANIFEST.in +0 -0
  14. {timeout_dead-0.1.0 → timeout_dead-0.1.1}/README.md +0 -0
  15. {timeout_dead-0.1.0 → timeout_dead-0.1.1}/icon.png +0 -0
  16. {timeout_dead-0.1.0 → timeout_dead-0.1.1}/pyproject.toml +0 -0
  17. {timeout_dead-0.1.0 → timeout_dead-0.1.1}/ruff.toml +0 -0
  18. {timeout_dead-0.1.0 → timeout_dead-0.1.1}/setup.cfg +0 -0
  19. {timeout_dead-0.1.0 → timeout_dead-0.1.1}/src/timeout_dead/__init__.py +0 -0
  20. {timeout_dead-0.1.0 → timeout_dead-0.1.1}/src/timeout_dead.egg-info/SOURCES.txt +0 -0
  21. {timeout_dead-0.1.0 → timeout_dead-0.1.1}/tests/conftest.py +0 -0
  22. {timeout_dead-0.1.0 → timeout_dead-0.1.1}/tests/test_cli.py +0 -0
  23. {timeout_dead-0.1.0 → timeout_dead-0.1.1}/uv.lock +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: timeout-dead
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Lightweight command timeout utility with zero runtime dependencies
5
5
  Author-email: Dmitry Krivoruchko <umbrella.leaf.for.work@gmail.com>
6
6
  License-Expression: Unlicense
@@ -18,7 +18,7 @@ version_tuple: tuple[int | str, ...]
18
18
  commit_id: str | None
19
19
  __commit_id__: str | None
20
20
 
21
- __version__ = version = '0.1.0'
22
- __version_tuple__ = version_tuple = (0, 1, 0)
21
+ __version__ = version = '0.1.1'
22
+ __version_tuple__ = version_tuple = (0, 1, 1)
23
23
 
24
- __commit_id__ = commit_id = 'g568c64836'
24
+ __commit_id__ = commit_id = 'g86f511007'
@@ -157,7 +157,7 @@ def run_command(
157
157
  timer: threading.Timer | None = None
158
158
 
159
159
  try:
160
- creationflags = subprocess.CREATE_NEW_PROCESS_GROUP if _is_windows() else 0
160
+ creationflags = getattr(subprocess, "CREATE_NEW_PROCESS_GROUP", 0) if _is_windows() else 0
161
161
  start_new_session = not _is_windows()
162
162
 
163
163
  process = subprocess.Popen(
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