From 0d8f14bedfa18a02a48af09aeb57866110757f35 Mon Sep 17 00:00:00 2001 From: Tim de Jager Date: Fri, 19 Jul 2024 15:28:55 +0200 Subject: [PATCH] release: v0.2.2 --- pixi.toml | 2 +- pyproject.toml | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/pixi.toml b/pixi.toml index 52282f7..569b061 100644 --- a/pixi.toml +++ b/pixi.toml @@ -1,6 +1,6 @@ [project] name = "rattler-build-conda-compat" -version = "0.2.1" +version = "0.2.2" description = "A package for exposing rattler-build API for conda-smithy" authors = ["nichmor "] channels = ["conda-forge"] diff --git a/pyproject.toml b/pyproject.toml index bc47835..c366608 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,13 +5,11 @@ build-backend = "hatchling.build" [project] name = "rattler-build-conda-compat" description = "A package for exposing rattler-build API for conda-smithy" -version = "0.2.1" +version = "0.2.2" readme = "README.md" authors = [{ name = "Nichita Morcotilo", email = "nichita@prefix.dev" }] license = { file = "LICENSE.txt" } -dependencies = [ - "typing-extensions>=4.12,<5" -] +dependencies = ["typing-extensions>=4.12,<5"] requires-python = ">=3.8" [tool.ruff] @@ -32,7 +30,7 @@ ignore = [ "T201", # https://docs.astral.sh/ruff/rules/print/ "A003", # https://docs.astral.sh/ruff/rules/builtin-attribute-shadowing/ "PTH", # We dont want to change the API to pathlib just yet - "ANN101" # Deprecated + "ANN101", # Deprecated ] exclude = [ "src/rattler_build_conda_compat/lint.py",