Skip to content

Commit

Permalink
added whl support
Browse files Browse the repository at this point in the history
  • Loading branch information
vighnesh-wednesday committed Oct 21, 2024
1 parent dff52e3 commit e56dff2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
run-ci:
runs-on: ubuntu-latest
container: vighneshwed/glue4:testing
# container: vighneshwed/glue4:testing

steps:
- name: Checkout repository
Expand All @@ -20,6 +20,11 @@ jobs:
run: |
python3 -m pip install --upgrade pip
pip3 install -r requirements.txt
- name: Download & Install awsglue whl
run: |
curl -L -o aws_glue_libs-4.0.0-py3-none-any.whl "https://drive.google.com/uc?export=download&id=1PsgZZi_GQWh98t3XQtUY2CLJP1-avkWq"
pip3 install ./aws_glue_libs-4.0.0-py3-none-any.whl
- name: Type check
run: mypy ./ --ignore-missing-imports
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ coverage
python-dotenv
kaggle~=1.5.16
pre-commit
pyspark==3.1.1

0 comments on commit e56dff2

Please sign in to comment.