diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index cfe1044..7bb43ec 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -24,24 +24,23 @@ jobs: steps: - uses: actions/checkout@v3 - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v4 with: - python-version: "3.9" + python-version: "3.11" - name: Install poetry - run: pipx install poetry + run: pip install poetry - name: Determine dependencies run: poetry lock - uses: actions/setup-python@v4 with: - python-version: "3.9" + python-version: "3.11" cache: poetry - - name: Install Dependencies using Poetry + - name: Install dependencies run: | - pip install connection-pool # because it is incompatible with poetry poetry install - name: Publish to PyPi