diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 078031c..71f81af 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -24,6 +24,7 @@ jobs: env: POETRY_PYPI_TOKEN_PYPI: ${{ secrets.POETRY_PYPI_TOKEN_PYPI}} run: | + poetry self add "poetry-dynamic-versioning[plugin]" poetry install poetry build poetry publish diff --git a/.github/workflows/sphinx.yml b/.github/workflows/sphinx.yml index 137f83c..34176cb 100644 --- a/.github/workflows/sphinx.yml +++ b/.github/workflows/sphinx.yml @@ -24,6 +24,7 @@ jobs: - name: Build HTML documentation run: | + poetry self add "poetry-dynamic-versioning[plugin]" poetry install --with docs poetry run sphinx-build docs ./docs/_build/html/ diff --git a/pyproject.toml b/pyproject.toml index 68db3a7..1336b7c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,6 @@ scipy = "^1.11.1" plotly = "^5.15.0" ipykernel = "^6.24.0" jupyter = "^1.0.0" -poetry-dynamic-versioning = {extras = ["plugin"], version = "^0.25.0"} [tool.poetry.group.dev.dependencies] pytest = "^7.4.0"