Skip to content

Commit e96b103

Browse files
authored
Merge pull request #19 from unixwzrd/dev
20250621 _00 checkpoint commit resolve conflicts in .gitignore
2 parents 4b49413 + 1af731a commit e96b103

File tree

6 files changed

+102879
-14
lines changed

6 files changed

+102879
-14
lines changed

.gitignore

Lines changed: 20 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -292,24 +292,31 @@ $RECYCLE.BIN/
292292
*.msp
293293

294294
# Windows shortcuts
295-
*.lnk
296-
test_projects/cuda-pytorch-template
295+
# !test_automation/logs/*.log
296+
# !test_automation/logs/transformers/*/*/*
297+
# !test_automation/reports/*
298+
# !test_automation/reports/*/*
299+
.master-planning
300+
.project-planning
297301
.project-planning/
298-
test_projects/
299-
backup/
302+
.vscode
300303
*.bak*
301-
node_modules/
302-
.project-planning
303-
.master-planning
304+
*.lnk
305+
*.wav
306+
*.wav
307+
*.code-workspace
308+
backup/
304309
bashexp*.txt
310+
custom-tts/
311+
node_modules/
305312
output.txt
306-
.vscode/
307-
tmp
308-
*.wav
313+
test_projects/
309314
test_projects/*
315+
test_projects/cuda-pytorch-template
310316
test_projects/custom-tts/samples/cpu_output.wav
311-
custom-tts/
317+
tmp
312318
torchdevice_tts_final_patch.txt
313-
torchdevice_tts_pr_patch.txt
314319
torchdevice_tts_patch.txt
315-
*.wav
320+
torchdevice_tts_pr_patch.txt
321+
TorchDevice.original
322+
.DS_Store

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# CHANGELOG
22

3+
## 0.5.1 - 2025-06-20
4+
5+
### Improved
6+
7+
- **Test Reporting**:
8+
- Enhanced the `generate_test_report.py` script to make test file paths in the Markdown report clickable, improving navigation from the report directly to the source code.
9+
- Corrected relative link paths to ensure they resolve correctly from the report's location in `test_automation/reports/`.
10+
- **Documentation**:
11+
- Updated `test_automation/README.md` with a new section detailing required system-level dependencies (Tesseract, image libraries) for running the full Transformers test suite.
12+
- Added a link in the main project `README.md` pointing to the advanced test automation guide for better discoverability.
13+
14+
315
## 0.4.2 - 2025-06-08
416

517
### Added

TorchDevice/_version.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# file generated by setuptools-scm
2+
# don't change, don't track in version control
3+
4+
__all__ = ["__version__", "__version_tuple__", "version", "version_tuple"]
5+
6+
TYPE_CHECKING = False
7+
if TYPE_CHECKING:
8+
from typing import Tuple
9+
from typing import Union
10+
11+
VERSION_TUPLE = Tuple[Union[int, str], ...]
12+
else:
13+
VERSION_TUPLE = object
14+
15+
version: str
16+
__version__: str
17+
__version_tuple__: VERSION_TUPLE
18+
version_tuple: VERSION_TUPLE
19+
20+
__version__ = version = '0.5.2.dev0+g241a2f9.d20250621'
21+
__version_tuple__ = version_tuple = (0, 5, 2, 'dev0', 'g241a2f9.d20250621')

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
setup(
66
name='TorchDevice',
7-
version='0.4.1',
7+
88
description='Intercepts PyTorch calls to enable transparent code portability between CUDA and MPS hardware.',
99
author='unixwzrd',
1010
author_email='unixwzrd@unixwzrd.ai',

0 commit comments

Comments
 (0)