Skip to content
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/smoke_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ jobs:
uv pip sync --system sdk/python/requirements/py${{ matrix.python-version }}-requirements.txt
uv pip install --system --no-deps .
- name: Test Imports
run: python -c "from feast import cli"
run: python -c "from feast.cli import cli"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ Homepage = "https://github.com/feast-dev/feast"
name = "Feast"

[project.scripts]
feast = "feast.cli:cli"
feast = "feast.cli.cli:cli"

[build-system]
requires = [
Expand Down
3 changes: 0 additions & 3 deletions sdk/python/docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@
import os
import sys

import sphinx_rtd_theme

sys.path.insert(0, os.path.abspath("../../feast"))
sys.path.insert(0, os.path.abspath("../.."))

Expand All @@ -32,7 +30,6 @@
# example where the Python protos did not build, which subsequently broke
# the RTD build. In order to fix this, we manually compile the protos.
import subprocess

from pathlib import Path

# cwd will be feast/sdk/python/docs/source
Expand Down
Loading
Loading