Fix CI: add setuptools to resolve missing pkg_resources#263
Merged
charlesprost merged 2 commits intomainfrom Apr 13, 2026
Merged
Fix CI: add setuptools to resolve missing pkg_resources#263charlesprost merged 2 commits intomainfrom
charlesprost merged 2 commits intomainfrom
Conversation
pkg_resources (provided by setuptools) is no longer pre-installed in the GitHub Actions runner environment. The jira dependency uses it internally, causing an ImportError at collection time. Add setuptools explicitly to requirements.txt and to each tox env that does not inherit the base [testenv] deps. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
setuptools 82.x removed pkg_resources as a top-level import, breaking all tox environments. Pin to setuptools<82 to ensure pkg_resources remains importable. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #263 +/- ##
=======================================
Coverage 89.03% 89.03%
=======================================
Files 75 75
Lines 10060 10060
=======================================
Hits 8957 8957
Misses 1103 1103
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:
|
matthiasL-scality
approved these changes
Apr 13, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
pkg_resources(provided bysetuptools) is no longer pre-installed in the GitHub Actions runner environmentjiradependency uses it internally, causing anImportErrorat collection time across all test jobssetuptoolsexplicitly torequirements.txtand to each tox env that does not inherit the base[testenv]depsTest plan