-
Notifications
You must be signed in to change notification settings - Fork 2
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
Adds native spelunker support #414
Conversation
dxenes1
commented
Oct 23, 2024
•
edited
Loading
edited
- create example tasks
- test queue functionality
- test submission data functionality
The queue, workspace, workspace buttons, and dashboard all seem to work correctly from a UI perspective. The |
@@ -82,7 +82,7 @@ <h2 class="pt-5 pb-3"> Collaborators </h2> | |||
<h2 class="pt-5 pb-3"> Contact Us </h2> | |||
|
|||
<p> | |||
We'd love to hear from you! Reach out at <a class="text-secondary-color-activated" href="mailto:info@neuvue.io">info@neuvue.io</a> with questions or if you are interested in collaborating with us. | |||
We'd love to hear from you! Reach out at <a class="text-secondary-color-activated" href="mailto:info@neuvue.io">info@bossdb.org</a> with questions or if you are interested in collaborating with us. |
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.
Very glad you are changing this. Can you change the mailto:
link as well?
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 it done!
with warnings.catch_warnings(): | ||
warnings.simplefilter("ignore") | ||
average_event_time = (m + (namespace_df[status] - m)).mean().to_pydatetime() | ||
changelog.append((average_event_time, n_tasks, status, namespace)) |
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.
Why are we ignoring warnings here?
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.
a previous team member hannah gooden reported annoying warnings here
#382