File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -101,6 +101,10 @@ jobs:
101101 TEST_DIR=$(mktemp -d)
102102 cd "$TEST_DIR"
103103
104+ # Create a virtual environment
105+ uv venv
106+ source .venv/bin/activate
107+
104108 # Install from TestPyPI using uv
105109 # Use --index-url for TestPyPI and --extra-index-url for dependencies from PyPI
106110 uv pip install \
@@ -109,7 +113,7 @@ jobs:
109113 tabpfn-common-utils==${VERSION}
110114
111115 # Verify installation and version
112- INSTALLED_VERSION=$(uv run python -c "import tabpfn_common_utils; print(tabpfn_common_utils.__version__)")
116+ INSTALLED_VERSION=$(python -c "import tabpfn_common_utils; print(tabpfn_common_utils.__version__)")
113117
114118 if [ "$INSTALLED_VERSION" != "${VERSION}" ]; then
115119 echo "❌ Version mismatch! Expected ${VERSION}, got ${INSTALLED_VERSION}"
You can’t perform that action at this time.
0 commit comments