Skip to content

Commit

Permalink
ci fix (#12)
Browse files Browse the repository at this point in the history
* ci fix
  • Loading branch information
Polkas authored Dec 23, 2023
1 parent 5b558fd commit 62d8228
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
uses: actions/checkout@v2

- name: Install package
run: pip install -r requirements.txt
run: pip install ".[all]"

- name: Test with pytest
run: python -m pytest tests --doctest-modules --cov=cat2cat --cov-report=xml
Expand All @@ -47,4 +47,4 @@ jobs:
verbose: true

- name: Build documentation
run: poetry run make html --directory docs/
run: make html --directory docs/
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## v0.1.4.9007
## v0.1.4.9008

- New `cat2cat_ml_run` function to check the ml models performance before `cat2cat` with ml option is run. Now, the ml models are more transparent.
- Improved the lack of support for NaN and None in the `get_mappings`.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = [
]
description = "Unifying an inconsistently coded categorical variable in a panel/longtitudal dataset."
readme = "README.md"
version = "0.1.4.9007"
version = "0.1.4.9008"
requires-python = ">=3.8"
keywords = ["panel", "categorical", "longtitudal", "inconsistent", "cat2cat"]
license = {text = "Apache License 2.0 | file LICENSE"}
Expand Down

0 comments on commit 62d8228

Please sign in to comment.