Skip to content

v11.0.28

Choose a tag to compare

@polischuks polischuks released this 20 May 11:58
· 4 commits to release since this release
fb6ef7c

What's Changed

    • Update Python version and refactor CI/CD pipeline

Upgraded Python version to 3.10.13. Refactored GitHub Actions workflows, renamed 'main.yml' to 'ci.yml', introduced new workflows for auto-formatter, and author assignment. Moreover, the 'requirements.txt' and 'setup.py' files have been removed as dependencies are managed by Poetry.

(cherry picked from commit 5300951)

  • Refactor codebase to use pathlib and type annotations

The codebase has been refactored to use the pathlib module for file handling operations, replacing the os module. Additionally, type annotations have been added throughout the codebase to improve readability and facilitate static type checking. These changes aim to enhance both the maintainability and reliability of the code.

(cherry picked from commit e2ade20)

  • Update workflow configurations for Github Actions

Modified the .github/workflows/ci.yml and .github/workflows/auto-format.yml files to streamline operations. Added a concurrency control which allows concurrent jobs to run in the workflow, and updated the names of the listed branches by removing unnecessary quotes. Also renamed test-ubuntu to test while improving its descriptor in the CI workflow.

(cherry picked from commit f525391)

  • Update Poetry install command in CI config

Updated the poetry install command in the continuous integration configuration (".github/workflows/ci.yml"). Removed the other flags and just added the "--sync" option for the Poetry install command to enforce a correct and complete installation of dependencies.

(cherry picked from commit 9f8ec79)

  • Update poetry install command in workflow files

The poetry install command in both '.github/workflows/actions/prepare/action.yml' and '.github/workflows/ci.yml' workflow files has been updated. The new command now includes '--no-root' option for better control of the installation process and removed the '--only main,dev' options to ensure all necessary dependencies are installed.

(cherry picked from commit 048b9cc)

  • Update dependencies: bump psutil to 7.0.0, mypy to 1.13.0, pandas to 2.2.3, scipy to 1.15.3, and ruff to 0.7.3

Full Changelog: v11.0.26...v11.0.27