Skip to content

Commit d24b7d1

Browse files
authored
Add configurations for DBR 15.4 LTS (#413)
1 parent 2f3c29b commit d24b7d1

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@ jobs:
8383
dbr: dbr133
8484
- py: '3.10'
8585
dbr: dbr143
86+
- py: '3.11'
87+
dbr: dbr154
8688
fail-fast: false
8789
steps:
8890
- uses: actions/checkout@v4

python/requirements/dbr154.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
delta-spark~=3.2.0
2+
ipython~=8.15.0
3+
numpy~=1.23.5
4+
pandas~=1.5.3
5+
pyarrow~=14.0.1
6+
pyspark~=3.5.0
7+
scipy~=1.11.1

python/tox.ini

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ isolated_build = True
66
envlist =
77
; Mirror Supported LTS DBR versions here: https://docs.databricks.com/release-notes/runtime/
88
; Use correct PySpark version based on Python version present in env name
9-
dbr{113,122,133,143}
9+
dbr{113,122,133,143,154}
1010
coverage-report
1111
skip_missing_interpreters = true
1212

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

0 commit comments

Comments
 (0)