Skip to content
This repository has been archived by the owner on Aug 30, 2022. It is now read-only.

Commit

Permalink
Specify versions for pyspark and delta-spark (#748)
Browse files Browse the repository at this point in the history
Co-authored-by: Bin Wang <wkk@users.noreply.github.com>
  • Loading branch information
bin-wang and wkk authored Oct 20, 2021
1 parent fbbc305 commit 4fd38b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
working-directory: bin
run: ./install-dependencies.sh
- name: Install dependencies for generating delta table
run: pip3 install --user pyspark delta-spark
run: pip3 install --user pyspark==3.1.2 delta-spark==1.0.0
- name: Build project
working-directory: bin
run: ./rebuild.sh -a
Expand Down
2 changes: 1 addition & 1 deletion bin/append-to-delta-table.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
print(textwrap.dedent("""\
This script requires pyspark and delta-spark.
You can install these modules using the following command:
pip install --user pyspark delta-spark
pip install --user pyspark==3.1.2 delta-spark==1.0.0
"""), file=sys.stderr)
sys.exit(-1)

Expand Down

0 comments on commit 4fd38b3

Please sign in to comment.