diff --git a/.github/workflows/cd_release.yml b/.github/workflows/cd_release.yml index 4a0a33fc..352c203a 100644 --- a/.github/workflows/cd_release.yml +++ b/.github/workflows/cd_release.yml @@ -293,7 +293,7 @@ jobs: - name: Publish package to TestPyPI if: inputs.test && inputs.publish_on_pypi && inputs.python_package - uses: pypa/gh-action-pypi-publish@v1.8.6 + uses: pypa/gh-action-pypi-publish@v1.8.10 with: user: __token__ password: ${{ secrets.PyPI_token }} @@ -301,7 +301,7 @@ jobs: - name: Publish package to PyPI if: ( ! inputs.test ) && inputs.publish_on_pypi && inputs.python_package - uses: pypa/gh-action-pypi-publish@v1.8.6 + uses: pypa/gh-action-pypi-publish@v1.8.10 with: user: __token__ password: ${{ secrets.PyPI_token }} diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 208d9700..e7e8fe70 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -29,7 +29,7 @@ repos: # Black is a code style and formatter # It works on files in-place - repo: https://github.com/ambv/black - rev: 23.3.0 + rev: 23.7.0 hooks: - id: black @@ -49,7 +49,7 @@ repos: # The project's documentation can be found at: # https://mypy.readthedocs.io/en/stable/index.html - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.3.0 + rev: v1.5.1 hooks: - id: mypy diff --git a/pyproject.toml b/pyproject.toml index c85edcf2..0796efb6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,20 +29,20 @@ requires-python = "~=3.7" dynamic = ["version", "description"] dependencies = [ - "invoke ~=2.1", - "tomlkit ~=0.11.8", + "invoke ~=2.2", + "tomlkit ~=0.12.1", ] [project.optional-dependencies] docs = [ "mike ~=1.1", - "mkdocs ~=1.4", + "mkdocs ~=1.5", "mkdocs-awesome-pages-plugin ~=2.9", "mkdocs-material ~=9.1", "mkdocstrings[python-legacy] ~=0.22.0", ] testing = [ - "pytest ~=7.3", + "pytest ~=7.4", "pytest-cov ~=4.1", ] dev = [