-
Notifications
You must be signed in to change notification settings - Fork 9
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 invalid package requirement #172
Fix invalid package requirement #172
Conversation
f81b5a3
to
bdd3302
Compare
bdd3302
to
ce497a3
Compare
5f7ff9c
to
1c59fef
Compare
@@ -26,11 +26,6 @@ repos: | |||
hooks: | |||
- id: yamlfmt | |||
|
|||
- repo: https://github.com/asottile/setup-cfg-fmt |
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.
We've already removed this hook in other repos, it's more annoying than useful.
@@ -9,7 +9,7 @@ jobs: | |||
runs-on: ubuntu-latest | |||
|
|||
steps: | |||
- uses: softprops/[email protected] |
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.
We've don't pin other other actions to exact versions, and this just creates noise from dependabot.
Going to land this so I can cut a new release. |
This was causing an exception in
aiidalab
package, see: aiidalab/aiidalab#442Alternatively, we might be able to remove this pin altogether, see last comment in #149.
In that case, the pin should be removed from AWB as well.
Corresponding fix to be more resilient in
aiidalab
is aiidalab/aiidalab#444