Skip to content

Commit ead296a

Browse files
committed
CI: Disable code style checks on Python 3.6, it is not supported by ruff
1 parent 13e822e commit ead296a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ jobs:
4040
python -m pip install --editable=.[test,develop]
4141
4242
- name: Check code style
43+
if: matrix.python-version != '3.6' && matrix.python-version != 'pypy-3.6'
4344
run: |
4445
poe check-style
4546

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ develop =
8888
build<1
8989
poethepoet<1
9090
pip-review<2 # Use `pip-review --local --interactive` to upgrade outdated packages.
91-
ruff
91+
ruff;python_version>='3.7'
9292

9393

9494
[options.packages.find]

0 commit comments

Comments
 (0)