Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: update to isort 5 #117

Merged
merged 1 commit into from
Aug 7, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion .isort.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@
known_first_party=sqlalchemy_searchable,tests
line_length=79
multi_line_output=3
not_skip=__init__.py
order_by_type=false
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ deps=
psycopg2>=2.4.6; platform_python_implementation == 'CPython'
sqla1.4: SQLAlchemy>=1.4,<1.5
lint: flake8
lint: isort>=4.0,<5.0
lint: isort>=5.0,<6.0
passenv =
SQLALCHEMY_SEARCHABLE_TEST_USER
SQLALCHEMY_SEARCHABLE_TEST_PASSWORD
Expand All @@ -17,5 +17,5 @@ commands=py.test {posargs}

[testenv:lint]
commands =
isort --recursive --check-only --diff sqlalchemy_searchable tests
isort --check-only --diff sqlalchemy_searchable tests
flake8 sqlalchemy_searchable tests