From 5f94239bd35034fd63b46b8e3f1524a0d4757ee5 Mon Sep 17 00:00:00 2001 From: Christopher Dignam Date: Mon, 16 Oct 2023 23:28:17 -0400 Subject: [PATCH] install dependencies for bump_version workflow (#203) --- .github/workflows/bump_version.yml | 6 +++++- pyproject.toml | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bump_version.yml b/.github/workflows/bump_version.yml index 05cf237f3..4280c50b7 100644 --- a/.github/workflows/bump_version.yml +++ b/.github/workflows/bump_version.yml @@ -18,6 +18,7 @@ jobs: runs-on: ubuntu-latest permissions: id-token: write + contents: write steps: - uses: actions/checkout@v3 @@ -32,8 +33,11 @@ jobs: python-version: "3.7" cache: "poetry" + - name: Install python dependencies + run: poetry install --no-interaction + - name: Update version - run: ./s/update-version ${{ inputs.version }} + run: poetry run ./s/update-version ${{ inputs.version }} - name: Build run: poetry build diff --git a/pyproject.toml b/pyproject.toml index 7ba916ba1..5d639a2a9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django-types" -version = "0.18.0" +version = "0.19.1" description = "Type stubs for Django" repository = "https://github.com/sbdchd/django-types" readme = "README.md"