st_edits #6

Merged
madrigal merged 14 commits from st_edits into main 2025-10-24 10:21:12 -04:00
3 changed files with 7 additions and 2 deletions
Showing only changes of commit 34faa57ea4 - Show all commits

View File

@ -168,6 +168,10 @@ Additional usage information is provided in the project documentation: [RIA Tool
Kindly report any issues on RIA Hub: [RIA Toolkit OSS Issues Board](https://riahub.ai/qoherent/ria-toolkit-oss/issues).
### Upcoming Changes
The ThinkRF package is currently pending further testing and potential updates.
## 🤝 Contribution
Contributions are always welcome! Whether it's an enhancement, bug fix, or new example, your input is valuable. If you'd like to contribute to the project, please reach out to the project maintainers.

View File

@ -11,6 +11,7 @@ authors = [
maintainers = [
{ name = "Benjamin Chinnery", email = "ben@qoherent.ai" },
{ name = "Ashkan Beigi", email = "ash@qoherent.ai" },
{ name = "Madrigal Weersink", email = "madrigal@qoherent.ai" },
]
keywords = [
"radio",

View File

@ -13,8 +13,8 @@ Run this after installing pyrf:
python scripts/fix_pyrf_python3.py
"""
from pathlib import Path
from lib2to3.refactor import RefactoringTool, get_fixers_from_package
from pathlib import Path
try:
import pyrf
@ -36,7 +36,7 @@ print(f"Found pyrf ThinkRF module at: {thinkrf_path}")
# Apply lib2to3 fixes
print("Applying Python 3 compatibility fixes...")
fixers = get_fixers_from_package('lib2to3.fixes')
fixers = get_fixers_from_package("lib2to3.fixes")
tool = RefactoringTool(fixers)
tool.refactor_file(str(thinkrf_path), write=True)