Skip to content

Commit

Permalink
Remove plugins requirements.
Browse files Browse the repository at this point in the history
Signed-off-by: Eduardo Apolinario <[email protected]>
  • Loading branch information
eapolinario committed Feb 17, 2023
1 parent 51548fb commit eae945c
Show file tree
Hide file tree
Showing 63 changed files with 3 additions and 7,830 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pythonbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,13 +119,13 @@ jobs:
# This path is specific to Ubuntu
path: ~/.cache/pip
# Look to see if there is a cache hit for the corresponding requirements files
key: ${{ format('{0}-pip-{1}', runner.os, hashFiles('dev-requirements.txt', format('plugins/{0}/requirements.txt', matrix.plugin-names ))) }}
key: ${{ format('{0}-pip-{1}', runner.os, hashFiles('dev-requirements.in', format('plugins/{0}/requirements.in', matrix.plugin-names ))) }}
- name: Install dependencies
run: |
make setup
cd plugins/${{ matrix.plugin-names }}
pip install -r requirements.txt
if [ -f dev-requirements.txt ]; then pip install -r dev-requirements.txt; fi
pip install -r requirements.in
if [ -f dev-requirements.in ]; then pip install -r dev-requirements.in; fi
pip install -U https://github.com/flyteorg/flytekit/archive/${{ github.sha }}.zip#egg=flytekit
pip freeze
- name: Test with coverage
Expand Down
1 change: 0 additions & 1 deletion plugins/flytekit-aws-athena/requirements.in
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
.
-e file:.#egg=flytekitplugins-athena
195 changes: 0 additions & 195 deletions plugins/flytekit-aws-athena/requirements.txt

This file was deleted.

1 change: 0 additions & 1 deletion plugins/flytekit-aws-batch/requirements.in
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
.
-e file:.#egg=flytekitplugins-awsbatch
Loading

0 comments on commit eae945c

Please sign in to comment.