Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace Agent State with Agent Phase #2123

Merged
merged 15 commits into from
Feb 5, 2024
9 changes: 6 additions & 3 deletions .github/workflows/pythonbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -271,9 +271,9 @@ jobs:
run: |
make setup
cd plugins/${{ matrix.plugin-names }}
pip install .
pip install --pre .
if [ -f dev-requirements.txt ]; then pip install -r dev-requirements.txt; fi
pip install -U $GITHUB_WORKSPACE
pip install --pre -U $GITHUB_WORKSPACE
pip freeze
- name: Test with coverage
run: |
Expand Down Expand Up @@ -307,7 +307,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r dev-requirements.in
make setup
pip freeze
- name: Lint
run: |
make lint
Expand All @@ -329,6 +330,8 @@ jobs:
run: |
python -m pip install --upgrade pip==21.2.4 setuptools wheel
pip install -r doc-requirements.txt
make setup
pip freeze
- name: Build the documentation
run: |
# TODO: Remove after buf migration is done and packages updated
Expand Down
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ update_boilerplate:

.PHONY: setup
setup: install-piptools ## Install requirements
pip install flyteidl --pre
pip install -r dev-requirements.in
pip install --pre -r dev-requirements.in
pip install git+https://github.com/flyteorg/flyte.git@7711df2cebaaa6a2dc8d7de2149859eed5ba0cc2#subdirectory=flyteidl


.PHONY: fmt
fmt:
Expand Down
2 changes: 0 additions & 2 deletions doc-requirements.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
-e file:.#egg=flytekit

grpcio
git+https://github.com/flyteorg/furo@main
sphinx
Expand Down
Loading
Loading