Skip to content

Commit

Permalink
chore(deps-dev): bump ruff from to 0.1.3, remove black (#230)
Browse files Browse the repository at this point in the history
* chore(deps-dev): bump ruff from 0.0.286 to 0.1.3

Bumps [ruff](https://github.com/astral-sh/ruff) from 0.0.286 to 0.1.3.
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@v0.0.286...v0.1.3)

---
updated-dependencies:
- dependency-name: ruff
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* fixup: remove black

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Michael Cousins <[email protected]>
  • Loading branch information
dependabot[bot] and mcous authored Nov 2, 2023
1 parent 65396f4 commit 86d61db
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 80 deletions.
12 changes: 2 additions & 10 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,18 +48,11 @@ If you find yourself in a situation where Decoy's test suite has blown up, **con

### Checks

Decoy's source code is typechecked with [mypy][] and linted with [ruff][].
Decoy's source code is typechecked with [mypy][] and linted/formatted with [ruff][].

```bash
poetry run poe check
poetry run poe lint
```

### Formatting

Decoy's source code is formatted using [black][].

```bash
poetry run poe format
```

Expand Down Expand Up @@ -101,7 +94,6 @@ git push --follow-tags
[pytest]: https://docs.pytest.org/
[pytest-xdist]: https://github.com/pytest-dev/pytest-xdist
[mypy]: https://mypy.readthedocs.io
[ruff]: https://github.com/charliermarsh/ruff
[black]: https://black.readthedocs.io
[ruff]: https://github.com/astral-sh/ruff
[mkdocs]: https://www.mkdocs.org/
[semantic versioning]: https://semver.org/
86 changes: 20 additions & 66 deletions poetry.lock

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

7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ python = "^3.7"
poethepoet = "0.19.0"

[tool.poetry.group.test.dependencies]
black = { version = "23.7.0", python = ">=3.8" }
coverage = { version = "7.2.7", extras = ["toml"] }
mypy = [
{ version = "1.4.1", python = "<3.8" },
Expand All @@ -38,7 +37,7 @@ pytest = "7.4.0"
pytest-asyncio = "0.21.1"
pytest-mypy-plugins = "2.0.0"
pytest-xdist = "3.3.1"
ruff = "0.0.286"
ruff = "0.1.3"

[tool.poetry.group.docs.dependencies]
mkdocs = { version = "1.5.2", python = ">=3.8" }
Expand All @@ -57,8 +56,8 @@ all = [
]
check = "mypy"
lint = "ruff check ."
format = "black ."
format-check = "black . --check"
format = "ruff format ."
format-check = "ruff format --check ."
test = "pytest -f"
test-once = "coverage run --branch --source=decoy -m pytest --mypy-same-process"
coverage = "coverage report"
Expand Down

0 comments on commit 86d61db

Please sign in to comment.