From ff12c4d18d46ad1e246f734b06da1a129aa5dcf0 Mon Sep 17 00:00:00 2001 From: Neal Joslin Date: Sat, 14 Sep 2024 15:17:29 -0400 Subject: [PATCH] Updated version --- pyproject.toml | 2 +- shell.nix | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index c4b9a71..217aabb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ruff-quickfix" -version = "0.1.1" +version = "0.2.0" description = "Wrapper for the `ruff` command for (neo)vim's quickfix" authors = ["Neal Joslin "] readme = "README.md" diff --git a/shell.nix b/shell.nix index 6507a3a..9f19f92 100644 --- a/shell.nix +++ b/shell.nix @@ -5,7 +5,8 @@ mkShell { buildInputs = [ ruff - python312Packages.poetry-core + poetry + python312 python312Packages.click python312Packages.mypy python312Packages.pytest @@ -13,5 +14,6 @@ mkShell { python312Packages.pytest-cov python312Packages.pytest-mock python312Packages.tox + pre-commit ]; }