Skip to content
This repository was archived by the owner on Feb 2, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
channel-priority: strict
show-channel-urls: true
miniforge-version: latest
python-version: 3.11
python-version: 3.12

- name: configure conda and install code
shell: bash -el {0}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests_mamba.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
channel-priority: strict
show-channel-urls: true
miniforge-version: latest
python-version: 3.11
python-version: 3.12

- name: configure conda and install code
shell: bash -el {0}
Expand Down
6 changes: 2 additions & 4 deletions conda_forge_feedstock_check_solvable/rattler_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ def run_rattler_build(command):
try:
# Run the command and capture output
print_debug("Running: %s", " ".join(command))
result = subprocess.run(
" ".join(command), shell=True, check=False, capture_output=True, text=True
)
result = subprocess.run(command, check=False, capture_output=True, text=True)

# Get the status code
status_code = result.returncode
Expand All @@ -35,7 +33,7 @@ def invoke_rattler_build(
# this is OK since there is an lru cache
virtual_package_repo_url = virtual_package_repodata()
# create a temporary file and dump the variants as YAML
with tempfile.NamedTemporaryFile(mode="w", delete=False) as variants_file:
with tempfile.NamedTemporaryFile(mode="w", delete_on_close=False) as variants_file:
channel_sources = variants.get("channel_sources", [])
# Add virtual package repo URL to channel sources
if channel_sources:
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ description = "A mamba-based package to check if a conda-forge feedstock is solv
dynamic = ["version", "dependencies", "optional-dependencies"]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.12"

[project.urls]
home = "https://github.com/regro/conda-forge-feedstock-check-solvable"
Expand Down
Loading