Test build again - #2617
Conversation
There was a problem hiding this comment.
Pull request overview
Updates a packaging-related comment in responsibleai/setup.py, intended to clarify where the package version is sourced during build/install.
Changes:
- Adjusted the inline comment describing how the package version is determined.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| import setuptools | ||
|
|
||
| # Version will be read from version.py | ||
| # Version will be read from version.py file |
There was a problem hiding this comment.
The comment says the version is read from version.py, but the code below actually reads from responsibleai/__version__.py (via os.path.join(name, '__version__.py')). Please update the comment to match the real source to avoid confusion for maintainers.
| # Version will be read from version.py file | |
| # Version will be read from responsibleai/__version__.py file |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #2617 +/- ##
=======================================
Coverage 70.18% 70.18%
=======================================
Files 18 18
Lines 1278 1278
=======================================
Hits 897 897
Misses 381 381
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Description
Checklist