Skip to content
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

Include isort #11

Merged
merged 3 commits into from
Aug 31, 2023
Merged

Include isort #11

merged 3 commits into from
Aug 31, 2023

Conversation

glatterf42
Copy link
Member

Summary

This PR introduces isort as a dependency in the dev group. It also tries to update anyio and pandas to their latest versions allowed by our pyproject.toml.

Context

isort is a tool for sorting and organizing import statements. Code contributions to the MESSAGE stack are checked for compliance, so I think we will want to use it for ixmp4, too, for consistency alone. I also think it does make the imports more readable.
isort offers compatibility with black and should be easily configurable to run automatically whenever saving code files. For vscode, use the official isort extension and edit the settings to read

  "[python]": {
    "editor.defaultFormatter": "ms-python.black-formatter",
    "editor.formatOnSave": true,
    "editor.codeActionsOnSave": {
        "source.organizeImports": true
    },
  },
  "black-formatter.importStrategy": "fromEnvironment",
  "isort.args":["--profile", "black"],
  "isort.importStrategy": "fromEnvironment",

These settings are partly redundant with our pyproject.toml, which also reads

[tool.isort]
profile = "black"

The importStrategy ensures that the tools from the virtual environment are used, if they are present. If not, some default versions will be used. isort.args enables the black compatibility.

@glatterf42 glatterf42 added the enhancement New feature or request label Aug 31, 2023
@glatterf42 glatterf42 self-assigned this Aug 31, 2023
from sqlalchemy.orm import Mapper
from sqlalchemy.sql import ColumnCollection
Copy link
Member Author

Choose a reason for hiding this comment

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

Importing both sql and sql.ColumnCollection explicitly seems a little redundant.

@glatterf42 glatterf42 requested a review from meksor August 31, 2023 10:23
Copy link
Contributor

@meksor meksor left a comment

Choose a reason for hiding this comment

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

Obviously I can't check every single file, but it looks alright from what i can see.

@glatterf42 glatterf42 merged commit 27b3000 into main Aug 31, 2023
@glatterf42 glatterf42 deleted the include/isort branch August 31, 2023 12:48
glatterf42 added a commit that referenced this pull request Jan 16, 2025
* Add isort as part of dev dependencies

* Apply isort to all files

* Update anyio and pandas dependencies

* Specify import location of Backend to resolve circular import
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants