-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #168 from ONSdigital/lack-of-back-data-mishandled
lack of back data mishandled
- Loading branch information
Showing
9 changed files
with
70 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "statistical_methods_library" | ||
version = "13.1.0" | ||
version = "13.1.1" | ||
description = "" | ||
authors = ["Your Name <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -18,6 +18,7 @@ coverage = "^7.2" | |
pytest-cov = "^4.1.0" | ||
pytest-dependency = "^0.5.1" | ||
pytest-tap = "^3.3" | ||
flake8-pyproject = "^1.2.3" | ||
|
||
[tool.pytest.ini_options] | ||
junit_suite_name = "statistical_methods_library" | ||
|
@@ -31,3 +32,8 @@ addopts = [ | |
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
|
||
[tool.flake8] | ||
max-line-length = 90 | ||
exclude = ".venv" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Statistical Methods Library 13.1.1 | ||
|
||
Release date: 2023-06-23 | ||
|
||
## Synopsis | ||
|
||
This release fixes a crash when passing a link filter and not passing back | ||
data to imputation. | ||
|
||
## Changes | ||
|
||
Imputation can now handle passing a link filter without back data. | ||
Previously it would incorrectly attempt to use back data in this case and | ||
crash due to the data frame being None. | ||
|
||
## Notes | ||
|
||
This change has no impact on existing outputs. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters