-
Notifications
You must be signed in to change notification settings - Fork 592
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
Bump to ETA v0.13.1 #5305
Bump to ETA v0.13.1 #5305
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,7 +76,7 @@ def get_version(): | |
# internal packages | ||
"fiftyone-brain>=0.18.2,<0.19", | ||
"fiftyone-db>=0.4,<2.0", | ||
"voxel51-eta>=0.13.0,<0.14", | ||
"voxel51-eta>=0.13.1,<0.14", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Codebase verification Version 0.13.1 is not yet available on PyPI The requested version
Please update the dependency to use the currently available version 🔗 Analysis chainLGTM! Let's verify the new version requirement. The version bump from Let's verify the version exists and check for any known issues: Let me verify the latest available version of voxel51-eta. 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Verify voxel51-eta version 0.13.1 exists and check for any known issues
# Check if the version exists on PyPI
curl -s https://pypi.org/pypi/voxel51-eta/json | jq '.releases | has("0.13.1")'
# Check the release date and download stats for this version
curl -s https://pypi.org/pypi/voxel51-eta/0.13.1/json | jq '{upload_time: .urls[0].upload_time, downloads: .urls[0].downloads}'
# Look for any issues mentioning this version
gh api graphql -f query='
{
search(query: "repo:voxel51/eta is:issue 0.13.1", type: ISSUE, first: 5) {
nodes {
... on Issue {
title
state
url
}
}
}
}'
Length of output: 498 Script: #!/bin/bash
# Check available versions of voxel51-eta
curl -s https://pypi.org/pypi/voxel51-eta/json | jq '.releases | keys[]' | sort -V
# Check the latest version's upload time and downloads
curl -s https://pypi.org/pypi/voxel51-eta/json | jq -r '.urls[0] | {upload_time, filename}'
Length of output: 773 |
||
] | ||
|
||
|
||
|
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.
No longer needed; this is now handled by voxel51/eta@9b4db83