Skip to content

Commit

Permalink
Merge pull request #3 from nichmor/release/v0.0.4
Browse files Browse the repository at this point in the history
release: v0.0.4
  • Loading branch information
nichmor committed Apr 26, 2024
2 parents 8691a7b + 51042bf commit 095b534
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions pixi.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5410,9 +5410,9 @@ packages:
timestamp: 1713391855237
- kind: pypi
name: rattler-build-conda-compat
version: 0.0.3
version: 0.0.4
path: .
sha256: 86573463a4d85e97bb765a5eca0423c016664e1588519468255fc6dc72530a8d
sha256: 45202b9ded422c1a8d4420f43f1a1885d63690fe748f40c3a03ab52d8bbcf334
requires_python: '>=3.8'
editable: true
- kind: conda
Expand Down
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 <nmorkotilo@gmail.com>"]
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 = "nichita@prefix.dev"}]
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 095b534

Please sign in to comment.