diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 5892168..47119cc 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -33,13 +33,13 @@ jobs: run: uv run mkdocs build --strict - name: Upload Pages artifact - if: github.event_name == 'release' || (github.event_name == 'push' && github.ref == 'refs/heads/master') || github.event_name == 'workflow_dispatch' + if: (github.event_name == 'push' && github.ref == 'refs/heads/master') || github.event_name == 'workflow_dispatch' uses: actions/upload-pages-artifact@v4 with: path: site deploy-docs: - if: github.event_name == 'release' || (github.event_name == 'push' && github.ref == 'refs/heads/master') || github.event_name == 'workflow_dispatch' + if: (github.event_name == 'push' && github.ref == 'refs/heads/master') || github.event_name == 'workflow_dispatch' name: Deploy to GitHub Pages needs: build-docs runs-on: ubuntu-latest diff --git a/.gitignore b/.gitignore index 24b8140..ce1e686 100644 --- a/.gitignore +++ b/.gitignore @@ -123,11 +123,6 @@ venv.bak/ # mkdocs documentation /site -# mypy -.mypy_cache/ -.dmypy.json -dmypy.json - # Pyre type checker .pyre/ diff --git a/pyproject.toml b/pyproject.toml index 32ad0ab..a252f17 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "gsppy" -version = "3.2.7" +version = "3.2.8" description = "GSP (Generalized Sequence Pattern) algorithm in Python" keywords = ["GSP", "sequential patterns", "data analysis", "sequence mining"] license = { file = "LICENSE" } diff --git a/uv.lock b/uv.lock index e1ce1ad..5faf3db 100644 --- a/uv.lock +++ b/uv.lock @@ -639,7 +639,7 @@ wheels = [ [[package]] name = "gsppy" -version = "3.2.0" +version = "3.2.8" source = { editable = "." } dependencies = [ { name = "click" },