Skip to content

Commit

Permalink
1.0.3
Browse files Browse the repository at this point in the history
Automatically generated by python-semantic-release
  • Loading branch information
semantic-release committed Jun 7, 2022
1 parent deff80f commit 0107d69
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 61 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

<!--next-version-placeholder-->

## v1.0.3 (2022-06-07)
### Fix
* Remove not used dependecies from pyproject.toml ([`e352da4`](https://github.com/F-Secure/failures-analysis/commit/e352da4b981d3391ce02da901c8665875b95ca06))
* Fix for the linting issue ([`581882a`](https://github.com/F-Secure/failures-analysis/commit/581882a1494235acca661c3910eee70fec4bd292))
* Fix for a test_score_similiarity to take in account latest changes in the failure_analysis.py ([`4714009`](https://github.com/F-Secure/failures-analysis/commit/4714009f17e73390ef6e2d693432ffb715f91e1f))
* Possible fix for a time-out issue, by commenting out other string similiarity algorithms but cosine similiarity. ([`e253d96`](https://github.com/F-Secure/failures-analysis/commit/e253d96e9e82ec9767a4f42dc397bf0edab0469e))

### Documentation
* Update usage instructions ([`de4e4b1`](https://github.com/F-Secure/failures-analysis/commit/de4e4b1e4b8fd197570d9e7888bea0952fff50e3))

## v1.0.2 (2022-06-07)
### Fix
* Fix for a fix to support 2 frameworks ([`5063ca3`](https://github.com/F-Secure/failures-analysis/commit/5063ca3cfd8f38b8dd420fb736ddcd68a5dbe00a))
Expand Down
2 changes: 1 addition & 1 deletion failure_analysis/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.2"
__version__ = "1.0.3"
120 changes: 60 additions & 60 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,60 +1,60 @@
[tool.poetry]
name = "failures-analysis"
version = "1.0.2"
description = " failures-analysis package provides fast and reliable way to find and group similar failures in test automation."
authors = ["Tatu Aalto"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/F-Secure/failures-analysis"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Testing",
]
packages = [
{ include = "failure_analysis", from="."}
]

[tool.poetry.scripts]
failures-analysis = "failure_analysis.failure_analysis:main"

[tool.poetry.urls]
"Change log" = "https://github.com/F-Secure/failures-analysis/blob/main/CHANGELOG.md"

[tool.poetry.dependencies]
python = "^3.8"
numpy = "^1.22.4"
pandas = "^1.4.2"
sklearn = "^0.0"
lxml = "^4.9.0"

[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
black = "^22.3.0"
isort = "^5.10.1"
invoke = "^1.7.1"
mypy = "^0.961"
flake8 = "^4.0.1"
python-semantic-release = "7.28.1"
approvaltests = "^5.2.0"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

[tool.black]
line-length = 120
target-version = ['py38']

[tool.semantic_release]
version_toml = [
"pyproject.toml:tool.poetry.version",
"failure_analysis/__init__.py:__version__"
]
branch = "main"
build_command = "poetry build"
[tool.poetry]
name = "failures-analysis"
version = "1.0.3"
description = " failures-analysis package provides fast and reliable way to find and group similar failures in test automation."
authors = ["Tatu Aalto"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/F-Secure/failures-analysis"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Testing",
]
packages = [
{ include = "failure_analysis", from="."}
]

[tool.poetry.scripts]
failures-analysis = "failure_analysis.failure_analysis:main"

[tool.poetry.urls]
"Change log" = "https://github.com/F-Secure/failures-analysis/blob/main/CHANGELOG.md"

[tool.poetry.dependencies]
python = "^3.8"
numpy = "^1.22.4"
pandas = "^1.4.2"
sklearn = "^0.0"
lxml = "^4.9.0"

[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
black = "^22.3.0"
isort = "^5.10.1"
invoke = "^1.7.1"
mypy = "^0.961"
flake8 = "^4.0.1"
python-semantic-release = "7.28.1"
approvaltests = "^5.2.0"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

[tool.black]
line-length = 120
target-version = ['py38']

[tool.semantic_release]
version_toml = [
"pyproject.toml:tool.poetry.version",
"failure_analysis/__init__.py:__version__"
]
branch = "main"
build_command = "poetry build"

0 comments on commit 0107d69

Please sign in to comment.