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

Specify versions for pyspark and delta-spark #748

Merged
merged 1 commit into from
Oct 20, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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