From 29c20ad2b5b9ff9342b9c0b38bf21e4d98004e3f Mon Sep 17 00:00:00 2001 From: brosoul <61538439+brosoul@users.noreply.github.com> Date: Fri, 30 Aug 2024 15:56:00 +0800 Subject: [PATCH] [CI] Remove isort check (#113) fix: remove isort check --- .github/workflows/python-tests.yml | 4 ---- python/aibrix/poetry.lock | 16 +--------------- python/aibrix/pyproject.toml | 1 - 3 files changed, 1 insertion(+), 20 deletions(-) diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 4c850c08..581e07bd 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -31,10 +31,6 @@ jobs: run: | cd python/aibrix python -m ruff check . - - name: Run isort - run: | - cd python/aibrix - python -m isort . --check-only - name: Run mypy run: | cd python/aibrix diff --git a/python/aibrix/poetry.lock b/python/aibrix/poetry.lock index c8738b3f..9127c932 100644 --- a/python/aibrix/poetry.lock +++ b/python/aibrix/poetry.lock @@ -22,20 +22,6 @@ files = [ {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, ] -[[package]] -name = "isort" -version = "5.13.2" -description = "A Python utility / library to sort Python imports." -optional = false -python-versions = ">=3.8.0" -files = [ - {file = "isort-5.13.2-py3-none-any.whl", hash = "sha256:8ca5e72a8d85860d5a3fa69b8745237f2939afe12dbf656afbcb47fe72d947a6"}, - {file = "isort-5.13.2.tar.gz", hash = "sha256:48fdfcb9face5d58a4f6dde2e72a1fb8dcaf8ab26f95ab49fab84c2ddefb0109"}, -] - -[package.extras] -colors = ["colorama (>=0.4.6)"] - [[package]] name = "mypy" version = "1.11.1" @@ -180,4 +166,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = "^3.11" -content-hash = "def4b242e88e4352993bbceba910a18f07d6be348c03ae312c67649614d25968" +content-hash = "5ca42ca07e5bb8aba95dc55514f163821aa44ac102ce653dafe0e5b4046cb637" diff --git a/python/aibrix/pyproject.toml b/python/aibrix/pyproject.toml index e2a65df9..19c85003 100644 --- a/python/aibrix/pyproject.toml +++ b/python/aibrix/pyproject.toml @@ -13,7 +13,6 @@ python = "^3.11" mypy = "^1.11.1" ruff = "^0.6.1" pytest = "^8.3.2" -isort = "^5.13.2" [build-system] requires = ["poetry-core"]