Skip to content

Commit

Permalink
Merge pull request #30 from chris48s/dependabot/pip/isort-5.0.3
Browse files Browse the repository at this point in the history
Bump isort from 4.3.21 to 5.0.3
  • Loading branch information
chris48s committed Jul 6, 2020
2 parents 6577fe9 + 5d32729 commit f6a6398
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
pip install 'Django ${{ matrix.django-version }}'
- name: Run lint checks
run: |
poetry run isort -rc -c --diff
poetry run isort --profile black -c --diff .
poetry run flake8 .
poetry run black --check .
- name: Run tests
Expand Down
6 changes: 0 additions & 6 deletions .isort.cfg

This file was deleted.

2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ Development Tasks:

* Install dependencies: `poetry install`
* Run the test suite: `./run_tests.py`
* Sort imports: `isort -rc .`
* Sort imports: `isort --profile black .`
* Run lint checks: `flake8 .`
* Auto-format: `black .`
16 changes: 7 additions & 9 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ cffi = "^1.0.0"
refract = "==0.4.0"

[tool.poetry.dev-dependencies]
isort = "^4.3"
isort = "^5.0"
flake8 = "^3.8.3"
black = { version = "==19.10b0", allow-prereleases = true, python = "^3.6" }
black = { version = "==19.10b0", allow-prereleases = true }
coveralls = "^2.0.0"

[build-system]
Expand Down

0 comments on commit f6a6398

Please sign in to comment.