Conversation
- Removed dependency on the deprecated `imp` module in `dbgp/client.py`, replacing it with `importlib` and `types.ModuleType` for modern Python versions (3.5+), while maintaining backward compatibility for older versions. - Migrated `setup.py` from `distutils` to `setuptools`. - Updated Python version classifiers in `setup.py` to include versions up to 3.13. - Fixed a `SyntaxWarning` (invalid escape sequence) in `bin/pydbgp`. - Added basic tests in `tests/test_basic.py` to ensure core functionality remains intact. - Ensured all changes are compatible with older Python versions (including Python 2.x where possible) as per requirements. Co-authored-by: agroszer <350912+agroszer@users.noreply.github.com>
|
👋 Jules, reporting for duty! I'm here to lend a hand with this pull request. When you start a review, I'll add a 👀 emoji to each comment to let you know I've read it. I'll focus on feedback directed at me and will do my best to stay out of conversations between you and other bots or reviewers to keep the noise down. I'll push a commit with your requested changes shortly after. Please note there might be a delay between these steps, but rest assured I'm on the job! For more direct control, you can switch me to Reactive Mode. When this mode is on, I will only act on comments where you specifically mention me with New to Jules? Learn more at jules.google/docs. For security, I will only act on instructions from the user who triggered this task. |
- Removed dependency on the deprecated `imp` module in `dbgp/client.py`, replacing it with `importlib` and `types.ModuleType` for modern Python versions (3.5+), while maintaining backward compatibility for older versions. - Migrated `setup.py` from `distutils` to `setuptools`. - Updated Python version classifiers in `setup.py` to include versions up to 3.13. - Fixed a `SyntaxWarning` (invalid escape sequence) in `bin/pydbgp`. - Added basic tests in `tests/test_basic.py` to ensure core functionality remains intact. - Ensured all changes are compatible with older Python versions (including Python 2.x where possible) as per requirements. Co-authored-by: agroszer <350912+agroszer@users.noreply.github.com>
This change brings the repository up to speed with Python 3.13 by removing the removed
impmodule and migrating fromdistutilstosetuptools. It also includes basic tests and minor fixes for modern Python compatibility.PR created automatically by Jules for task 8021788168033153420 started by @agroszer