diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f9c5e0d..9f0a017 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,9 +4,9 @@ name: piicatcher_spacy on: push: - branches: [ master ] + branches: [ main ] pull_request: - branches: [ master ] + branches: [ main ] jobs: build: @@ -29,4 +29,4 @@ jobs: python -m poetry install - name: Test with pytest run: | - python -m poetry run pytest --junitxml=junit/test-results.xml --cov=piicatcher --cov-report=xml --cov-report=html tests/ \ No newline at end of file + python -m poetry run pytest --junitxml=junit/test-results.xml --cov=piicatcher --cov-report=xml --cov-report=html tests/ diff --git a/pyproject.toml b/pyproject.toml index 8f361b2..82f98fd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "piicatcher_spacy" -version = "0.1.0-dev3" +version = "0.1.1" description = "PIICatcher plugin that uses spacy to detect PII" authors = ["Tokern "] license = "MIT License" @@ -39,4 +39,4 @@ requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.poetry.plugins."piicatcher_detectors"] -spacy = "piicatcher_spacy.detectors:SpacyDetector" \ No newline at end of file +spacy = "piicatcher_spacy.detectors:SpacyDetector"