Skip to content

Commit

Permalink
release: v0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
nichmor committed Apr 26, 2024
1 parent 8691a7b commit f1bd165
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion pixi.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "rattler-build-conda-compat"
version = "0.0.3"
version = "0.0.4"
description = "A package for exposing rattler-build API for conda-smithy"
authors = ["nichmor <[email protected]>"]
channels = ["conda-forge"]
Expand All @@ -18,6 +18,7 @@ conda-build = "*"
"ruamel.yaml" = "*"
conda = ">=4.2"
pygithub = ">=2,<3"
tomli = "*"

[pypi-dependencies]
rattler-build-conda-compat = { path = ".", editable = true}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ description="A package for exposing rattler-build API for conda-smithy"
readme = "README.md"
authors = [{name = "Nichita Morcotilo", email = "[email protected]"}]
license = {file = "LICENSE.txt"}
version = "0.0.3"
version = "0.0.4"

requires-python = ">=3.8"
4 changes: 2 additions & 2 deletions src/rattler_build_conda_compat/lint.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from inspect import cleandoc
import os.path
import tomllib
import tomli
import github
import ruamel.yaml
from typing import Any, Mapping, Sequence
Expand Down Expand Up @@ -563,7 +563,7 @@ def run_conda_forge_specific(
# linter will rerun on the next commit anyway
return
hints_toml_str = hints_toml_req.content.decode("utf-8")
specific_hints = tomllib.loads(hints_toml_str)["hints"]
specific_hints = tomli.loads(hints_toml_str)["hints"]

for rq in build_reqs + host_reqs + run_reqs:
dep = rq.split(" ")[0].strip()
Expand Down

0 comments on commit f1bd165

Please sign in to comment.