Skip to content
Open
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: 0 additions & 2 deletions conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ requirements:
- wheel
run:
- python {{ python }}
- pip
- click {{ click }}
- rachis >={{ rachis }}
build:
- python {{ python }}
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S uv run --script
# !/usr/bin/env -S uv run --script

# /// script
# dependencies = ["nox>=2025.11.12"]
Expand Down
3 changes: 1 addition & 2 deletions src/qiime2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down
3 changes: 1 addition & 2 deletions tests/test_conda_hooks.py
Original file line number Diff line number Diff line change
@@ -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"
Expand Down