-
Notifications
You must be signed in to change notification settings - Fork 4
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
Pin Python version to be consistent with aiida-icon #24
Conversation
3e60e5b
to
d320402
Compare
@@ -43,10 +43,10 @@ jobs: | |||
timeout-minutes: 15 | |||
steps: | |||
- uses: actions/checkout@v4 | |||
- name: Set up Python ${{ matrix.python-version }} |
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.
These were wrong because for docs and formatting we anyway want to use a fixed version
To be consistent with aiida-icon.
To be consistent with aiida-icon.
d320402
to
133679e
Compare
inputs: Optional[list[ConfigCycleTaskInput | str]] = Field(default_factory=list) | ||
outputs: Optional[list[ConfigCycleTaskOutput | str]] = Field(default_factory=list) | ||
depends: Optional[list[ConfigCycleTaskDepend | str]] = Field(default_factory=list) | ||
inputs: list[ConfigCycleTaskInput | str] | None = Field(default_factory=list) |
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 needed because formatter complained
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.
Thanks!
No description provided.