Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add PyMySQL and bump versions for other libs #34

Merged
merged 2 commits into from
Jun 18, 2024
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
8 changes: 5 additions & 3 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,20 @@ verify_ssl = true
name = "pypi"

[packages]
jupyterlab= "==4.2.1"
jupyterlab= "==4.2.2"
pyspark= "==3.5.1"
boto3 = "==1.34.117"
boto3 = "==1.34.128"
minio = "==7.2.7"
delta-spark = "==3.2.0" # should match JAR version (DELTA_SPARK_VER) specified in the Dockerfile
pandas = "==2.2.2"
pyarrow = "==16.1.0"
sparkmonitor = "==3.0.2"
itables = "==2.1.1"
PyMySQL = "==1.1.1"
urllib3 = "==2.2.2"

[dev-packages]
pytest = "==8.2.1"
pytest = "==8.2.2"
coverage = "==7.5.3"
pytest-cov = "==5.0.0"
ipython = "==8.25.0"
Expand Down
145 changes: 85 additions & 60 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions src/spark/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
from threading import Timer

from pyspark.conf import SparkConf
from pyspark.pandas import DataFrame
from pyspark.sql import SparkSession
from pyspark.sql import SparkSession, DataFrame

from minio_utils.minio_utils import get_minio_client

Expand Down
Loading