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

Refactor ScalingTransformer to Inherit from BaseNumericTransformer and Update Tests #284

Merged
merged 12 commits into from
Sep 19, 2024
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ Changed
- DatetimeInfoExtractor.mappings_provided changed from a dict.keys() object to list so transformer is serialisable. `#258 <https://github.com/lvgig/tubular/pull/258>`_
- Created BaseNumericTransformer class to support test refactor of numeric file `#266 <https://github.com/lvgig/tubular/pull/266>`_
- Updated testing approach for LogTransformer `#268 <https://github.com/lvgig/tubular/pull/268>`_
- Refactored ScalingTransformer tests in new format `#284 <https://github.com/lvgig/tubular/pull/284>`_


1.3.0 (2024-06-13)
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ def minimal_attribute_dict():
},
"ScalingTransformer": {
"scaler_type": "standard",
"columns": ["a"],
"columns": ["a", "b"],
},
"SeriesDtMethodTransformer": {
"new_column_name": "a",
Expand Down
Loading
Loading