Skip to content

Commit

Permalink
Replace Agent State with Agent Phase (#2123)
Browse files Browse the repository at this point in the history
Signed-off-by: Future-Outlier <[email protected]>
Signed-off-by: Kevin Su <[email protected]>
Co-authored-by: Kevin Su <[email protected]>
  • Loading branch information
Future-Outlier and pingsutw authored Feb 5, 2024
1 parent bcf1333 commit e7accce
Show file tree
Hide file tree
Showing 20 changed files with 153 additions and 393 deletions.
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

0 comments on commit e7accce

Please sign in to comment.