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

adding configuration for DBR 15.4 LTS #413

Merged
merged 1 commit into from
Oct 2, 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
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ jobs:
dbr: dbr133
- py: '3.10'
dbr: dbr143
- py: '3.11'
dbr: dbr154
fail-fast: false
steps:
- uses: actions/checkout@v4
Expand Down
7 changes: 7 additions & 0 deletions python/requirements/dbr154.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
delta-spark~=3.2.0
ipython~=8.15.0
numpy~=1.23.5
pandas~=1.5.3
pyarrow~=14.0.1
pyspark~=3.5.0
scipy~=1.11.1
7 changes: 4 additions & 3 deletions python/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ isolated_build = True
envlist =
; Mirror Supported LTS DBR versions here: https://docs.databricks.com/release-notes/runtime/
; Use correct PySpark version based on Python version present in env name
dbr{113,122,133,143}
dbr{113,122,133,143,154}
coverage-report
skip_missing_interpreters = true

Expand All @@ -16,7 +16,8 @@ package = wheel
wheel_build_env = .pkg
setenv =
COVERAGE_FILE = .coverage.{envname}
basepython =
basepython =
dbr154: py311
dbr143: py310
dbr133: py310
dbr122: py39
Expand Down Expand Up @@ -73,7 +74,7 @@ deps =
; We should have a top-level makefile that orchestrates this which allows better environment prep and execution of
; shell scripts prior to tox execution. it'll also create a stable interface for migrating to hatch in the future
; since the make commands would not change
-rrequirements/dbr143.txt
-rrequirements/dbr154.txt
semver
commands =
make --directory ../docs html
Expand Down