diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 47db114..d7f4a3e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -47,4 +47,4 @@ jobs: verbose: true - name: Build documentation - run: poetry run make html --directory docs/ \ No newline at end of file + run: make html --directory docs/ \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 68228ef..8e4b236 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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`. diff --git a/pyproject.toml b/pyproject.toml index 6efc5da..58aadd4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"}