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

Bump various test dependencies #454

Merged
merged 2 commits into from
Dec 23, 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ repos:
- id: check-merge-conflict
- id: mixed-line-ending
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 23.11.0 # must match pyproject.toml
rev: 23.12.1 # must match pyproject.toml
hooks:
- id: black
language_version: python3.8
- repo: https://github.com/pycqa/isort
rev: 5.12.0 # must match pyproject.toml
rev: 5.13.2 # must match pyproject.toml
hooks:
- id: isort
name: isort (python)
Expand Down
11 changes: 7 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ dependencies = [

[project.optional-dependencies]
dev = [
"black==23.11.0", # Must match .pre-commit-config.yaml
"flake8-bugbear==23.9.16",
"black==23.12.1", # Must match .pre-commit-config.yaml
"flake8-bugbear==23.12.2",
"flake8-noqa==1.3.2",
"isort==5.12.0", # Must match .pre-commit-config.yaml
"mypy==1.7.1",
"isort==5.13.2", # Must match .pre-commit-config.yaml
"mypy==1.8.0",
"pre-commit-hooks==4.5.0", # Must match .pre-commit-config.yaml
"pytest==7.4.3",
"pytest-xdist==3.5.0",
Expand All @@ -74,6 +74,9 @@ dev = [
[project.entry-points]
"flake8.extension" = {Y0 = "pyi:PyiTreeChecker"}

[tool.hatch.build.targets.wheel]
include = ["pyi.py"]

[tool.hatch.version]
source = "vcs"

Expand Down