- Notifications
You must be signed in to change notification settings - Fork186
fix: packaging type info#654
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
423c185
toe2dd513
Comparecodecov-commenter commentedMay 14, 2024 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
Codecov ReportAll modified and coverable lines are covered by tests ✅
❗ Your organization needs to install theCodecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@## master #654 +/- ##======================================= Coverage 90.42% 90.42% ======================================= Files 39 39 Lines 3510 3510 ======================================= Hits 3174 3174 Misses 336 336 ☔ View full report in Codecov by Sentry. |
51d6fa4
intomasterUh oh!
There was an error while loading.Please reload this page.
max-accenta commentedMay 29, 2024
Hi, for some reason installing the package with the latest version ( python -m venv venv. venv/bin/activatepython -m pip install influxdb_clientls -l venv/lib/python3.11/site-packages/influxdb_client| grep typed# Nothing Installing directly from the repo works though ( |
Uh oh!
There was an error while loading.Please reload this page.
Closes#622
Proposed Changes
This adds PEP 561 distributing and packaging type information, which specifically resolves issue with MyPy
error: Skipping analyzing "influxdb_client": module is installed, but missing library stubs or py.typed marker [import-untyped]
The required marker really is just an empty file
py.typed
. The same fix has been applied in v3 client.Checklist
pytest tests
completes successfully