Skip to content

feat: setup pixi, move to src layout, run ruff format once#58

Merged
jjjermiah merged 6 commits intosnakemake:mainfrom
jjjermiah:jjjermiah/convert-to-pixi
Mar 27, 2025
Merged

feat: setup pixi, move to src layout, run ruff format once#58
jjjermiah merged 6 commits intosnakemake:mainfrom
jjjermiah:jjjermiah/convert-to-pixi

Conversation

@jjjermiah
Copy link
Copy Markdown
Contributor

@jjjermiah jjjermiah commented Mar 16, 2025

This is the first iteration of PRs to start enforcing type annotations.

The move to the src layout also helps with the finicky nature of pytest-cov

While mypy type-checking is possible, there are currently ~50 issues to be addressed

mypy output
pixi run type-check
✨ Pixi task (type-check in dev): mypy src/
src/snakemake_interface_common/settings.py:15: error: Need type annotation for "skip"  [var-annotated]
src/snakemake_interface_common/settings.py:16: error: Generator has incompatible item type "SettingsEnumBase"; expected "TSettingsEnumBase"  [misc]
src/snakemake_interface_common/settings.py:20: error: Argument 1 to "_parse_choices_into" of "SettingsEnumBase" has incompatible type "list[str]"; expected "str"  [arg-type]
src/snakemake_interface_common/settings.py:24: error: Incompatible return value type (got "list[Never]", expected "set[TSettingsEnumBase]")  [return-value]
src/snakemake_interface_common/settings.py:24: error: Argument 1 to "_parse_choices_into" of "SettingsEnumBase" has incompatible type "list[str]"; expected "str"  [arg-type]
src/snakemake_interface_common/settings.py:27: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
src/snakemake_interface_common/settings.py:31: error: A function returning TypeVar should receive at least one argument containing the same TypeVar  [type-var]
src/snakemake_interface_common/settings.py:31: note: Consider using the upper bound "SettingsEnumBase" instead
src/snakemake_interface_common/settings.py:32: error: Incompatible return value type (got "SettingsEnumBase", expected "TSettingsEnumBase")  [return-value]
src/snakemake_interface_common/settings.py:42: error: Function is missing a type annotation  [no-untyped-def]
src/snakemake_interface_common/logging.py:7: error: Function is missing a return type annotation  [no-untyped-def]
src/snakemake_interface_common/plugin_registry/attribute_types.py:23: error: Function is missing a return type annotation  [no-untyped-def]
src/snakemake_interface_common/plugin_registry/attribute_types.py:27: error: Function is missing a return type annotation  [no-untyped-def]
src/snakemake_interface_common/plugin_registry/attribute_types.py:30: error: Function is missing a return type annotation  [no-untyped-def]
src/snakemake_interface_common/exceptions.py:19: error: Function is missing a type annotation  [no-untyped-def]
src/snakemake_interface_common/exceptions.py:39: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
src/snakemake_interface_common/exceptions.py:50: error: Incompatible types in assignment (expression has type "int | None", variable has type "int")  [assignment]
src/snakemake_interface_common/exceptions.py:51: error: Incompatible types in assignment (expression has type "Path | None", variable has type "Path")  [assignment]
src/snakemake_interface_common/exceptions.py:58: error: Incompatible types in assignment (expression has type "list[Any]", variable has type "tuple[Any, ...]")  [assignment]
src/snakemake_interface_common/exceptions.py:63: error: Function is missing a type annotation  [no-untyped-def]
src/snakemake_interface_common/utils.py:7: error: Function is missing a type annotation  [no-untyped-def]
src/snakemake_interface_common/utils.py:19: error: Function is missing a type annotation  [no-untyped-def]
src/snakemake_interface_common/utils.py:22: error: Function is missing a type annotation  [no-untyped-def]
src/snakemake_interface_common/utils.py:27: error: Function is missing a type annotation  [no-untyped-def]
src/snakemake_interface_common/utils.py:38: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
src/snakemake_interface_common/utils.py:56: error: Function is missing a type annotation  [no-untyped-def]
src/snakemake_interface_common/utils.py:72: error: Function is missing a type annotation  [no-untyped-def]
src/snakemake_interface_common/utils.py:77: error: Function is missing a type annotation  [no-untyped-def]
src/snakemake_interface_common/plugin_registry/plugin.py:28: error: Function is missing a return type annotation  [no-untyped-def]
src/snakemake_interface_common/plugin_registry/plugin.py:41: error: Function is missing a return type annotation  [no-untyped-def]
src/snakemake_interface_common/plugin_registry/plugin.py:42: error: Invalid index type "str | None" for "dict[str, SettingsBase]"; expected type "str"  [index]
src/snakemake_interface_common/plugin_registry/plugin.py:45: error: Argument 1 to "get" of "dict" has incompatible type "str | None"; expected "str"  [arg-type]
src/snakemake_interface_common/plugin_registry/plugin.py:48: error: No overload variant of "get" of "dict" matches argument type "None"  [call-overload]
src/snakemake_interface_common/plugin_registry/plugin.py:48: note: Possible overload variants:
src/snakemake_interface_common/plugin_registry/plugin.py:48: note:     def get(self, str, /) -> SettingsBase | None
src/snakemake_interface_common/plugin_registry/plugin.py:48: note:     def get(self, str, SettingsBase, /) -> SettingsBase
src/snakemake_interface_common/plugin_registry/plugin.py:48: note:     def [_T] get(self, str, _T, /) -> SettingsBase | _T
src/snakemake_interface_common/plugin_registry/plugin.py:57: error: Function is missing a type annotation  [no-untyped-def]
src/snakemake_interface_common/plugin_registry/plugin.py:78: error: Function is missing a return type annotation  [no-untyped-def]
src/snakemake_interface_common/plugin_registry/plugin.py:87: error: Function is missing a type annotation  [no-untyped-def]
src/snakemake_interface_common/plugin_registry/plugin.py:113: error: Function is missing a type annotation  [no-untyped-def]
src/snakemake_interface_common/plugin_registry/plugin.py:172: error: Function is missing a type annotation  [no-untyped-def]
src/snakemake_interface_common/plugin_registry/plugin.py:173: error: Function is missing a type annotation  [no-untyped-def]
src/snakemake_interface_common/plugin_registry/plugin.py:195: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
src/snakemake_interface_common/plugin_registry/plugin.py:211: error: Function is missing a type annotation  [no-untyped-def]
src/snakemake_interface_common/plugin_registry/plugin.py:217: error: Need type annotation for "kwargs_tagged"  [var-annotated]
src/snakemake_interface_common/plugin_registry/plugin.py:232: error: Function is missing a type annotation  [no-untyped-def]
src/snakemake_interface_common/plugin_registry/plugin.py:300: error: Function is missing a type annotation  [no-untyped-def]
src/snakemake_interface_common/plugin_registry/plugin.py:301: error: Function is missing a type annotation  [no-untyped-def]
src/snakemake_interface_common/plugin_registry/__init__.py:22: error: Function is missing a return type annotation  [no-untyped-def]
src/snakemake_interface_common/plugin_registry/__init__.py:27: error: Function is missing a return type annotation  [no-untyped-def]
src/snakemake_interface_common/plugin_registry/__init__.py:27: note: Use "-> None" if function does not return a value
src/snakemake_interface_common/plugin_registry/__init__.py:56: error: Function is missing a type annotation  [no-untyped-def]
src/snakemake_interface_common/plugin_registry/__init__.py:62: error: Function is missing a return type annotation  [no-untyped-def]
src/snakemake_interface_common/plugin_registry/__init__.py:62: note: Use "-> None" if function does not return a value
src/snakemake_interface_common/plugin_registry/__init__.py:80: error: Function is missing a return type annotation  [no-untyped-def]
src/snakemake_interface_common/plugin_registry/__init__.py:95: error: Function is missing a return type annotation  [no-untyped-def]
Found 50 errors in 7 files (checked 11 source files)

I've also realized that there are some inconsistencies between some of the abstract classes and their concrete implementations in the snakemake-interface-*-plugins repos which need to be addressed.

I will begin addressing these in a set of separate PRs and iterate over them.

Summary by CodeRabbit

  • Chores

    • Streamlined CI/CD workflows for package publishing and testing by updating dependency management and automation steps.
    • Enhanced repository configurations and ignore rules to support new build environments.
  • Refactor

    • Simplified internal method structures to boost maintainability without impacting functionality.
  • Tests

    • Improved quality control checks within test workflows for more consistent formatting and linting results.

@coderabbitai
Copy link
Copy Markdown

coderabbitai bot commented Mar 16, 2025

Important

Review skipped

Review was skipped due to path filters

⛔ Files ignored due to path filters (1)
  • pyproject.toml is excluded by !pyproject.toml

CodeRabbit blocks several paths by default. You can override this behavior by explicitly including those paths in the path filters. For example, including **/dist/** will override the default block on the dist directory, by removing the pattern from both the lists.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

📝 Walkthrough

Walkthrough

This PR introduces modifications in configuration and source files. The updates include a new entry in .gitattributes for handling the pixi.lock file, changes in GitHub Actions workflows (release and test) to replace Poetry with Pixi, and updates to file ignore rules. Additionally, abstract property methods in several source files are converted to standard methods with inline ellipsis formatting, along with minor formatting adjustments in exception handling.

Changes

File(s) Change Summary
.gitattributes Added an entry for pixi.lock to enable binary merging, set syntax highlighting to YAML, and mark as generated.
.github/workflows/release-please.yml Updated checkout action to v4; replaced actions/setup-python with prefix-dev/setup-pixi@v0.8.3; removed Poetry dependency steps in favor of Pixi for build and publish processes; updated publishing action to pypa/gh-action-pypi-publish@release/v1.
.github/workflows/test.yml Renamed job formatting to quality-control; added permissions and Pixi installation steps; replaced Poetry with Pixi for dependency management; added quality control steps (Ruff Format, Ruff lint, and Collect QC); updated test execution to use Pixi.
.gitignore Added .pixi and *.egg-info entries with comments for Pixi environments.
src/snakemake_interface_common/exceptions.py Reformatted the conditional check for the arg variable without affecting functionality.
src/snakemake_interface_common/plugin_registry/{__init__.py, plugin.py, tests.py} Changed abstract property methods to standard method definitions with inline ellipsis in multiple classes.
src/snakemake_interface_common/rules.py Converted abstract property methods (name, lineno, snakefile) to standard method definitions with inline ellipsis.

Sequence Diagram(s)

Release Workflow

sequenceDiagram
    participant Repo as Repository
    participant GA as GitHub Actions Runner
    participant Pixi as Pixi Environment
    participant Publish as PyPI Publish Action

    Repo->>GA: Checkout repository (actions/checkout@v4)
    GA->>Pixi: Set up Pixi (prefix-dev/setup-pixi@v0.8.3)
    GA->>Pixi: Build package (pixi run --environment publish check-build)
    GA->>Publish: Publish package (pypa/gh-action-pypi-publish@release/v1)
Loading

Test Workflow

sequenceDiagram
    participant Repo as Repository
    participant GA as GitHub Actions Runner
    participant Pixi as Pixi Environment
    participant QC as Quality Control Steps
    participant Test as Test Runner

    Repo->>GA: Checkout repository (actions/checkout@v4)
    GA->>Pixi: Install Pixi for quality control
    GA->>QC: Run quality checks (Ruff Format & Ruff lint)
    QC->>GA: Return QC results (Collect QC)
    GA->>Pixi: Install Pixi for testing
    GA->>Test: Execute tests using Pixi
Loading

Possibly related issues


🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai plan to trigger planning for file edits and PR creation.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Copy Markdown

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 3d63108 and 8594b43.

⛔ Files ignored due to path filters (2)
  • pixi.lock is excluded by !**/*.lock
  • pyproject.toml is excluded by !pyproject.toml
📒 Files selected for processing (9)
  • .gitattributes (1 hunks)
  • .github/workflows/release-please.yml (1 hunks)
  • .github/workflows/test.yml (1 hunks)
  • .gitignore (1 hunks)
  • src/snakemake_interface_common/exceptions.py (1 hunks)
  • src/snakemake_interface_common/plugin_registry/__init__.py (1 hunks)
  • src/snakemake_interface_common/plugin_registry/plugin.py (1 hunks)
  • src/snakemake_interface_common/plugin_registry/tests.py (2 hunks)
  • src/snakemake_interface_common/rules.py (1 hunks)
🧰 Additional context used
📓 Path-based instructions (1)
`**/*.py`: Do not try to improve formatting. Do not suggest ...

**/*.py: Do not try to improve formatting.
Do not suggest type annotations for functions that are defined inside of functions or methods.
Do not suggest type annotation of the self argument of methods.
Do not suggest type annotation of the cls argument of classmethods.
Do not suggest return type annotation if a function or method does not contain a return statement.

  • src/snakemake_interface_common/exceptions.py
  • src/snakemake_interface_common/plugin_registry/__init__.py
  • src/snakemake_interface_common/plugin_registry/tests.py
  • src/snakemake_interface_common/plugin_registry/plugin.py
  • src/snakemake_interface_common/rules.py
🔇 Additional comments (15)
.gitattributes (1)

1-2: LGTM: Appropriate Git attributes for pixi.lock file

This configuration correctly sets up Git attributes for the pixi.lock file, marking it as a binary file for merge purposes, setting YAML syntax highlighting, and indicating it's a generated file. This aligns with the PR objective of setting up pixi for dependency management.

.gitignore (1)

162-165: LGTM: Proper ignores for pixi environment files

Adding ignores for .pixi directory and *.egg-info files is appropriate for the transition to pixi and the new src layout. These entries ensure that environment-specific and build-related files are properly excluded from version control.

src/snakemake_interface_common/exceptions.py (1)

31-34: LGTM: Improved formatting of the conditional statement

The reformatting of the isinstance parameters improves readability while maintaining the same functionality. This change aligns with the PR objective of running ruff formatter on the codebase.

src/snakemake_interface_common/plugin_registry/__init__.py (1)

130-131:

Details

✅ Verification successful

Verify function call sites for API compatibility

Similarly, the expected_attributes method has been changed from an abstract property to a standard abstract method with inline ellipsis. Verify that all call sites have been updated accordingly.


🏁 Script executed:

#!/bin/bash
# Search for usages of expected_attributes as a property vs method
echo "Searching for usages of expected_attributes as a property..."
rg "\.expected_attributes\b(?!\()" -t py

echo -e "\nSearching for usages of expected_attributes as a method..."
rg "\.expected_attributes\(" -t py

Length of output: 715


API Call-Site Verification for expected_attributes

After reviewing the usage across the codebase, the update is verified. The abstract method is now correctly being invoked—with the call site in src/snakemake_interface_common/plugin_registry/__init__.py using self.expected_attributes(). No legacy property-style accesses were detected.

Please ensure any additional modules or future call sites also invoke it as a method.

src/snakemake_interface_common/plugin_registry/plugin.py (1)

64-64: LGTM! Style improvements aligned with formatting standardization.

The changes to abstract method declarations make the code more concise by moving the ellipsis to the same line as the method signature. This is consistent with modern Python style and aligns with the PR's objective to run ruff format.

Also applies to: 68-68, 72-72

src/snakemake_interface_common/rules.py (1)

8-8: LGTM! Consistent style improvements across the codebase.

These changes follow the same pattern as in other files, moving the ellipsis to the same line as the method signature for abstract methods. This creates a more concise code style while maintaining type annotations.

Also applies to: 12-12, 16-16

.github/workflows/release-please.yml (1)

25-28: LGTM! Successfully migrated from Poetry to Pixi for the release workflow.

The changes to the release workflow appropriately implement Pixi for dependency management and build processes:

  1. Updated checkout action to v4 with full history (fetch-depth: 0)
  2. Added Pixi installation with the specific environment and version
  3. Updated build and publish steps to use Pixi commands
  4. Used the latest PyPI publish action

These changes align with the PR's objective to set up Pixi and modernize the workflow.

Also applies to: 29-34, 35-38, 39-43

.github/workflows/test.yml (6)

10-14: LGTM! Good security practice adding explicit permissions.

Adding explicit permissions follows GitHub Actions best practices and improves the security posture of the workflow. The permissions granted are appropriate for a CI workflow.


17-17: LGTM! More descriptive job name.

Renaming from "formatting" to "quality-control" better reflects the expanded scope of the job, which now includes formatting, linting, and potentially type checking.


21-29: LGTM! Successfully migrated to Pixi for the testing workflow.

The changes appropriately set up Pixi with the development environment and caching enabled, which should improve workflow performance. Using the latest checkout action (v4) is also a good practice.


30-43: LGTM! Comprehensive quality control setup with Ruff.

The implementation of Ruff for both formatting and linting is well-structured:

  • Using if: always() ensures all checks run regardless of previous failures
  • The commented-out Mypy step aligns with the PR's goal to enforce type annotations
  • These checks provide a solid foundation for code quality

44-45: LGTM! Good practice to add a collection step.

Adding a final step to verify all quality control checks have passed provides clear feedback on the overall status of the code quality checks.


50-60: LGTM! Streamlined testing setup with Pixi.

The testing job has been updated to use Pixi consistently with the rest of the workflow:

  • Using the latest checkout action
  • Installing Pixi with caching enabled
  • Running tests with verbose output for better debugging

This approach centralizes dependency management in Pixi, making the workflow more maintainable.

src/snakemake_interface_common/plugin_registry/tests.py (2)

17-17: Consistent formatting for abstract methods looks good.

The abstract method declarations have been updated to use a more concise single-line ellipsis format rather than multiline placeholders. This change improves code readability while maintaining the same functionality and proper type annotations.

Also applies to: 20-20, 23-23, 26-26, 29-29


43-45: Assertion formatting change looks good.

The multi-line formatting of the assertion statement helps improve readability while preserving the original functionality.

Copy link
Copy Markdown

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (1)
.github/workflows/test.yml (1)

38-42: Commented-Out Mypy Step – Consider Cleanup
The block for the Mypy type-check step is commented out. If type-checking via Mypy is no longer part of the routine (or will be handled separately), consider removing these commented lines to reduce clutter. Otherwise, add a clarifying comment to explain why they are retained.

Suggested cleanup diff:

-      # - name: Mypy
-      #   if: always()
-      #   run: |
-      #     pixi run --environment dev type-check
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 8594b43 and 7b5a037.

📒 Files selected for processing (2)
  • .github/workflows/test.yml (1 hunks)
  • .gitignore (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • .gitignore
🔇 Additional comments (10)
.github/workflows/test.yml (10)

10-15: Permissions Block Added
The new permissions block assigns minimal required permissions (contents: read, checks: write, issues: write, pull-requests: write). This appears correct and helps enforce least privilege for the workflow.


17-18: Job Renaming to Quality-Control
The job previously named “formatting” has been renamed to “quality-control,” reflecting the expanded scope of quality checks. This improves clarity regarding the job’s responsibilities.


20-22: Checkout Step Updated
The “Check out the code” step now uses actions/checkout@v4, which is an improvement over the previous version. Ensure that this version meets the project’s needs.


23-28: Pixi Installation in Quality-Control Job
The new “Install Pixi” step correctly uses prefix-dev/setup-pixi@v0.8.3 with the specified environment (dev) and Pixi version (v0.42.1). This aligns with the PR objectives of shifting dependency management from Poetry to Pixi.


29-33: Ruff Format Step Added
The “Ruff Format” step leverages Pixi to run formatting checks (pixi run --environment dev format --check). This change appears well integrated and ensures code formatting is validated.


34-38: Ruff Lint Step Added
The addition of the “Ruff lint” step, executing pixi run --environment dev lint --diff, is appropriate for enforcing linting standards in the codebase.


43-45: Collect QC Step Looks Good
The “Collect QC” step simply echoes a confirmation message that quality control checks have passed. This step is straightforward and serves its purpose.


49-50: Testing Job – Checkout Step
The testing job includes a checkout step using actions/checkout@v4, ensuring consistency with the quality-control job.


51-56: Testing Job – Pixi Installation
The testing job mirrors the quality-control job by installing Pixi with the same configuration (prefix-dev/setup-pixi@v0.8.3, environment: dev, pixi-version: v0.42.1), which maintains consistency across the workflow.


57-59: Run Tests Command Configured Correctly
The “Run tests” step executes pixi run --environment dev test --show-capture=all -s -vv, enabling verbose output and capturing test details. This configuration should aid in debugging test failures.

@jjjermiah jjjermiah moved this to In review in Roadmap Mar 17, 2025
@jjjermiah jjjermiah self-assigned this Mar 17, 2025
@jjjermiah jjjermiah requested a review from bsmith89 March 22, 2025 14:46
@jjjermiah jjjermiah merged commit 95d1d8d into snakemake:main Mar 27, 2025
4 checks passed
@github-project-automation github-project-automation bot moved this from In review to Done in Roadmap Mar 27, 2025
@jjjermiah jjjermiah deleted the jjjermiah/convert-to-pixi branch March 27, 2025 13:39
johanneskoester pushed a commit that referenced this pull request May 15, 2025
🤖 I have created a release *beep* *boop*
---


##
[1.18.0](v1.17.4...v1.18.0)
(2025-03-27)


### Features

* setup pixi, move to src layout, run ruff format once
([#58](#58))
([95d1d8d](95d1d8d))

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
johanneskoester added a commit that referenced this pull request Jun 23, 2025
NOTE: This PR depends on #58 to be merged first

This PR fixes all the mypy complaints **within the repo** 

This allows future PRs to start addressing any discrepencies between the
types annotated so far and all the concrete implementations throughout
the `interface` plugins

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit

- **Chores**
- Enhanced the automation pipeline with a new type-checking step for
improved quality control.
- **Refactor**
- Improved type safety and clarity across various components, including
error handling, logging, and plugin management.
- **Documentation**
- Added detailed documentation and utility methods to the
`SettingsEnumBase` class for better clarity.

These behind-the-scenes improvements help ensure a smoother, more
dependable experience for our users.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->

---------

Co-authored-by: Johannes Köster <johannes.koester@uni-due.de>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

Status: Done

Development

Successfully merging this pull request may close these issues.

2 participants