-
Notifications
You must be signed in to change notification settings - Fork 108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(typings) Move typing-extensions into TypeGuard
#572
Conversation
Missed this in #564.
Reviewer's Guide by SourceryThis pull request addresses an issue where type annotations were not correctly applied in certain Python versions. It moves the import of Updated class diagram for Self type annotationclassDiagram
class Window
class Session
class Pane
class Server
note for Window "typing.Self or typing_extensions.Self"
note for Session "typing.Self or typing_extensions.Self"
note for Pane "typing.Self or typing_extensions.Self"
note for Server "typing.Self or typing_extensions.Self"
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #572 +/- ##
==========================================
- Coverage 88.82% 88.80% -0.02%
==========================================
Files 36 36
Lines 4079 4075 -4
Branches 385 385
==========================================
- Hits 3623 3619 -4
Misses 308 308
Partials 148 148 ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @tony - I've reviewed your changes - here's some feedback:
Overall Comments:
- It looks like you're repeating the same conditional import logic in multiple files; consider creating a utility function or a shared module to encapsulate this logic.
Here's what I looked at during the review
- 🟢 General issues: all looks good
- 🟢 Security: all looks good
- 🟢 Testing: all looks good
- 🟢 Complexity: all looks good
- 🟢 Documentation: all looks good
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
0055005
to
024259a
Compare
cc: @ppentchev follow up to #564 |
Ahhh, I see, I missed those after the rebase, because I decided to just get it over with quickly without examining your changes in detail...... sorry about that! Argh. As to testing without extras, assuming that your system Python is not Python 3.9: uv run --no-dev -p python3.9 -- python3 -c 'from libtmux import common, constants, exc, formats, neo, pane, server, session, window' ...and, of course, I did not think to do that after the rebase. Sorry about that again! |
@ppentchev No worries! I take responsibility. And hey, thank you for |
Add step to verify package can be imported without dev dependencies installed. This helps catch missing runtime dependencies before they reach users. * Add runtime check using `uv run --no-dev` * Run before installing dev dependencies * Print package version and basic info * Document in CHANGES Kudos @ppentchev for inspiration on the command (#572 (comment))
Missed this in #564. Resolves #571.
Summary by Sourcery
Bug Fixes:
typing_extensions
import into theTypeGuard
block.Summary by Sourcery
Bug Fixes:
Self
from thetyping
module for Python 3.11 and later, and fromtyping-extensions
for earlier versions. This addresses an issue where type hints caused errors in Python 3.11 or later. Resolves tests(ci) Check runtime deps import correctly #574