Skip to content

Commit

Permalink
version 1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelFu1998-create committed Nov 3, 2021
1 parent b8fe90a commit 033de53
Show file tree
Hide file tree
Showing 14 changed files with 5 additions and 4 deletions.
Binary file removed dist/pyexplainer-1.1.1.tar.gz
Binary file not shown.
Binary file removed dist/pyexplainer-1.1.2-py3-none-any.whl
Binary file not shown.
Binary file removed dist/pyexplainer-1.1.2.tar.gz
Binary file not shown.
Binary file not shown.
Binary file added dist/pyexplainer-1.1.4.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion pyexplainer/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.1.3'
__version__ = '1.1.4'
Binary file modified pyexplainer/__pycache__/__init__.cpython-38.pyc
Binary file not shown.
Binary file modified pyexplainer/__pycache__/pyexplainer_pyexplainer.cpython-38.pyc
Binary file not shown.
1 change: 1 addition & 0 deletions pyexplainer/pyexplainer_pyexplainer.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,7 @@ def get_dflt():
with open(path_rf_model, 'rb') as f:
rf_model = pickle.load(f)
X_train = pd.read_csv(path_X_train)
X_train = X_train.drop(["File"], axis=1)
y_train = pd.read_csv(path_y_train)["RealBug"]
X_explain = pd.read_csv(path_X_explain)
y_explain = pd.read_csv(path_y_explain)["RealBug"]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyexplainer"
version = "1.1.3"
version = "1.1.4"
description = "Explainable AI tool for Software Quality Assurance (SQA)"
authors = ["Michael <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.1.3'
__version__ = '1.1.4'
Binary file modified tests/__pycache__/__init__.cpython-38.pyc
Binary file not shown.
Binary file modified tests/__pycache__/test_pyexplainer.cpython-38-pytest-6.2.3.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion tests/test_pyexplainer.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def in_virtualenv():


def test_version():
assert __version__ == '1.1.3'
assert __version__ == '1.1.4'


def test_load_sample_data():
Expand Down

0 comments on commit 033de53

Please sign in to comment.