Skip to content

Commit 036f3d0

Browse files
authored
Merge pull request #2425 from DanielNoord/random-cleanup
Test on `3.14` and fix any bugs
2 parents af31b4f + 5295098 commit 036f3d0

File tree

6 files changed

+359
-529
lines changed

6 files changed

+359
-529
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
20+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
2121
os: [ubuntu-latest, macos-latest, windows-latest]
2222

2323
steps:
@@ -27,6 +27,8 @@ jobs:
2727
uses: actions/setup-python@v6
2828
with:
2929
python-version: ${{ matrix.python-version }}
30+
allow-prereleases: true
31+
check-latest: true
3032

3133
- name: Install UV
3234
uses: astral-sh/setup-uv@v6

isort/pylama_isort.py

Lines changed: 0 additions & 46 deletions
This file was deleted.

pyproject.toml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,6 @@ isort-identify-imports = "isort.main:identify_imports_main"
6666
[project.entry-points."distutils.commands"]
6767
isort = "isort.setuptools_commands:ISortCommand"
6868

69-
[project.entry-points."pylama.linter"]
70-
isort = "isort.pylama_isort:Linter"
71-
7269
[project.optional-dependencies]
7370
colors = ["colorama"]
7471
plugins = ["setuptools"]
@@ -140,11 +137,10 @@ dev = [
140137
"pipreqs>=0.4.9",
141138
"portray>=1.8.0",
142139
"pre-commit>=2.13.0",
143-
"pylama>=7.7",
144140
"pytest>=7.4.2",
145141
"pytest-benchmark>=3.4.1",
146-
"requirementslib>=1.5",
147142
"ruff>=0.9.6",
143+
"setuptools>=75.8.0",
148144
"stdlibs>=2024.10.21.16",
149145
"toml>=0.10.2",
150146
"tox>=4.24.1",

tests/unit/test_importable.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ def test_importable():
2020
import isort.parse
2121
import isort.place
2222
import isort.profiles
23-
import isort.pylama_isort
2423
import isort.sections
2524
import isort.settings
2625
import isort.setuptools_commands

tests/unit/test_pylama_isort.py

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)