Skip to content

Commit

Permalink
Update python version from 3.8 to 3.10 in run-tests workflow (#178)
Browse files Browse the repository at this point in the history
* Update {{.input_project_name}}-run-tests.yml.tmpl

Python version 3.8 is now EOL.

* Update transform.py.tmpl
  • Loading branch information
mniels17 authored Dec 2, 2024
1 parent 11b9db4 commit 6cbe452
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.10
{{- if (eq .input_include_feature_store `yes`) }}
# Feature store tests bring up a local Spark session, so Java is required.
- uses: actions/setup-java@v4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ def transformer_fn():
transformers=[
(
"hour_encoder",
OneHotEncoder(categories="auto", sparse=False),
OneHotEncoder(categories="auto", sparse_output=False),
["pickup_hour"],
),
(
"day_encoder",
OneHotEncoder(categories="auto", sparse=False),
OneHotEncoder(categories="auto", sparse_output=False),
["pickup_dow"],
),
(
Expand Down

0 comments on commit 6cbe452

Please sign in to comment.