diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1dc9f3d3..8c6ef304 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -294,8 +294,6 @@ jobs: - name: '🎨 Set up Chrome driver' if: matrix.browser == 'chrome' id: setup-chromedriver - with: - chromedriver-version: '115.0.5790.102' uses: nanasess/setup-chromedriver@v2 - name: '🦊 Set up Gecko driver' id: setup-geckodriver @@ -373,6 +371,7 @@ jobs: with: fetch-depth: 0 - name: '🐍 Set up Poetry' + id: setup-poetry uses: ./.github/actions/setup-poetry with: python-version: ${{ matrix.python-version }} @@ -380,7 +379,7 @@ jobs: - name: Cache pip cache folder uses: actions/cache@v3 with: - path: ${{ needs.prepare-python.outputs.pip-cache-dir }} + path: ${{ steps.setup-poetry.outputs.pip-cache-dir }} key: pip-cache-${{ runner.os }}-python-${{ matrix.python-version }} - name: '📤 Restore Spotlight' uses: actions/download-artifact@v3 diff --git a/pyproject.toml b/pyproject.toml index 51aa1155..d891e398 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -138,7 +138,6 @@ files = [ ] [tool.ruff] -line-length = 100 ignore = [ "E501" ] diff --git a/scripts/check_dynamic_versioning.py b/scripts/check_dynamic_versioning.py index aa90caf2..1e5b98dd 100755 --- a/scripts/check_dynamic_versioning.py +++ b/scripts/check_dynamic_versioning.py @@ -13,7 +13,7 @@ errors = [] - if not pyproject["tool"]["poetry"]["version"]: + if pyproject["tool"]["poetry"]["version"] != "0.0.0": errors.append("Error: tool.poetry.version != 0.0.0") if not pyproject["tool"]["poetry-dynamic-versioning"]["enable"]: errors.append("Error: tool.poetry-dymamic-versioning.enable != true")