-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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: ci fix #1334
base: master
Are you sure you want to change the base?
fix: ci fix #1334
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
LGTM 👍 |
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.
Skipped PR review on a642979 because no changed files had a supported extension. If you think this was in error, please contact us and we'll fix it right away.
CI Fix ReviewThis PR currently contains no changes but is titled "fix: ci fix". Based on the repository analysis, there appears to be a critical issue in the CI configuration that needs addressing:
Recommendations:
Please add the necessary changes to fix the CI issues. An empty commit won't resolve the underlying problems. |
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.
❌ Changes requested. Incremental review on 206a604 in 1 minute and 6 seconds
More details
- Looked at
12
lines of code in1
files - Skipped
0
files when reviewing. - Skipped posting
1
drafted comments based on config settings.
1. python/setup.py:46
- Draft comment:
Consider adding version constraints for the 'deeplake' dependency for consistency and to prevent potential future breakage. - Reason this comment was not posted:
Marked as duplicate.
Workflow ID: wflow_V8yxt65cipGkQjaH
Want Ellipsis to fix these issues? Tag @ellipsis-dev
in a comment. You can customize Ellipsis with 👍 / 👎 feedback, review rules, user-specific overrides, quiet
mode, and more.
@@ -43,6 +43,7 @@ def scan_for_package_data( | |||
"jsonref>=1.1.0", | |||
"inflection>=0.5.1", | |||
"semver>=2.13.0", | |||
"deeplake", |
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.
Consider pinning 'deeplake' with version constraints for consistency.
"deeplake", | |
"deeplake>=1.0.0,<2.0.0", |
@@ -43,6 +43,8 @@ def scan_for_package_data( | |||
"jsonref>=1.1.0", | |||
"inflection>=0.5.1", | |||
"semver>=2.13.0", | |||
"deeplake", | |||
"azure", |
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.
The azure
package dependency is too broad and may pull in unnecessary packages. Specify the exact Azure package(s) needed (e.g. azure-storage-blob
, azure-core
, etc).
📝 Committable Code Suggestion
‼️ Ensure you review the code suggestion before committing it to the branch. Make sure it replaces the highlighted code, contains no missing lines, and has no issues with indentation.
"azure", | |
"azure-storage-blob", "azure-core", |
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.
❌ Changes requested. Incremental review on 9d5d206 in 2 minutes and 47 seconds
More details
- Looked at
12
lines of code in1
files - Skipped
0
files when reviewing. - Skipped posting
1
drafted comments based on config settings.
1. python/setup.py:47
- Draft comment:
Consider adding version constraints to the 'azure' dependency. - Reason this comment was not posted:
Marked as duplicate.
Workflow ID: wflow_JuHU13eAzwFWhAtN
Want Ellipsis to fix these issues? Tag @ellipsis-dev
in a comment. You can customize Ellipsis with 👍 / 👎 feedback, review rules, user-specific overrides, quiet
mode, and more.
@@ -43,6 +43,8 @@ def scan_for_package_data( | |||
"jsonref>=1.1.0", | |||
"inflection>=0.5.1", | |||
"semver>=2.13.0", | |||
"deeplake", | |||
"azure", |
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.
Consider specifying a version constraint for 'azure' (e.g., 'azure>=x.y.z') to avoid potential compatibility issues.
Important
Add
deeplake
andazure
tocore_requirements
insetup.py
.deeplake
andazure
tocore_requirements
insetup.py
.This description was created by
for 9d5d206. It will automatically update as commits are pushed.