Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
Expand All @@ -27,6 +27,8 @@ jobs:
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
check-latest: true

- name: Install UV
uses: astral-sh/setup-uv@v6
Expand Down
46 changes: 0 additions & 46 deletions isort/pylama_isort.py

This file was deleted.

6 changes: 1 addition & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,6 @@ isort-identify-imports = "isort.main:identify_imports_main"
[project.entry-points."distutils.commands"]
isort = "isort.setuptools_commands:ISortCommand"

[project.entry-points."pylama.linter"]
isort = "isort.pylama_isort:Linter"

[project.optional-dependencies]
colors = ["colorama"]
plugins = ["setuptools"]
Expand Down Expand Up @@ -140,11 +137,10 @@ dev = [
"pipreqs>=0.4.9",
"portray>=1.8.0",
"pre-commit>=2.13.0",
"pylama>=7.7",
"pytest>=7.4.2",
"pytest-benchmark>=3.4.1",
"requirementslib>=1.5",
"ruff>=0.9.6",
"setuptools>=75.8.0",
"stdlibs>=2024.10.21.16",
"toml>=0.10.2",
"tox>=4.24.1",
Expand Down
1 change: 0 additions & 1 deletion tests/unit/test_importable.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ def test_importable():
import isort.parse
import isort.place
import isort.profiles
import isort.pylama_isort
import isort.sections
import isort.settings
import isort.setuptools_commands
Expand Down
24 changes: 0 additions & 24 deletions tests/unit/test_pylama_isort.py

This file was deleted.

Loading