diff --git a/conda-recipe/meta.yaml b/conda-recipe/meta.yaml index 2a320e1..57426cd 100644 --- a/conda-recipe/meta.yaml +++ b/conda-recipe/meta.yaml @@ -14,8 +14,6 @@ requirements: - wheel run: - python {{ python }} - - pip - - click {{ click }} - rachis >={{ rachis }} build: - python {{ python }} diff --git a/noxfile.py b/noxfile.py index 716f3ef..b356c39 100644 --- a/noxfile.py +++ b/noxfile.py @@ -1,4 +1,4 @@ -#!/usr/bin/env -S uv run --script +# !/usr/bin/env -S uv run --script # /// script # dependencies = ["nox>=2025.11.12"] diff --git a/src/qiime2/__init__.py b/src/qiime2/__init__.py index 9030847..37e8091 100644 --- a/src/qiime2/__init__.py +++ b/src/qiime2/__init__.py @@ -6,14 +6,13 @@ # The full license is in the file LICENSE, distributed with this software. # ---------------------------------------------------------------------------- -import sys import importlib import importlib.abc import importlib.util +import sys import rachis - # The `.` prevents the hook from running on the root, which doesn't # help. The root is handled by the __dunders__ below QIIME2_PREFIX = "qiime2." diff --git a/tests/test_conda_hooks.py b/tests/test_conda_hooks.py index 8b4a4a6..3d03853 100644 --- a/tests/test_conda_hooks.py +++ b/tests/test_conda_hooks.py @@ -1,6 +1,5 @@ -from pathlib import Path import subprocess - +from pathlib import Path REPO_ROOT = Path(__file__).resolve().parents[1] ACTIVATE_HOOK = REPO_ROOT / "hooks" / "00_activate_qiime2_envs.sh"