diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d70369b..2ba87cc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -106,4 +106,4 @@ jobs: - name: Run repo-review action uses: ./ with: - plugins: sp-repo-review==2023.06.01 + plugins: sp-repo-review==2023.07.13 diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index d9debcf..47c1f70 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -15,7 +15,7 @@ repos: additional_dependencies: [black==23.7.0] - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.0.277" + rev: "v0.0.278" hooks: - id: ruff args: ["--fix", "--show-fixes"] @@ -54,7 +54,7 @@ repos: files: (src|web|tests) args: [] additional_dependencies: - - click==8.1.3 + - click>=8.1.5 - markdown-it-py - pytest - rich diff --git a/pyproject.toml b/pyproject.toml index 1566e29..8ea9b06 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,7 +31,7 @@ classifiers = [ dynamic = ["version"] dependencies = [ "markdown-it-py", - "pyyaml", + "pyyaml!=6.0.0,!=5.4.0,!=5.4.1", # pyyaml is broken with cython 3 "tomli; python_version < '3.11'", "typing-extensions; python_version < '3.11'", ] @@ -160,7 +160,6 @@ extend-ignore = [ "E501", # Line too long "PT004", # Incorrect check, usefixtures is the correct way to do this ] -target-version = "py310" src = ["src"] unfixable = [ "T20", # Removes print statements @@ -182,6 +181,3 @@ flake8-unused-arguments.ignore-variadic-names = true [tool.ruff.per-file-ignores] "src/repo_review/_compat/**.py" = ["TID251"] "src/**/__main__.py" = ["T20"] - -[tool.repo-review] -ignore = ["PC190"] # Remove after first July 2023 release of sp-repo-review