From fa9439650cac5fa49cb53786afb6af6cbb31ac19 Mon Sep 17 00:00:00 2001 From: Anton Petrov <43291747+dev-petrov@users.noreply.github.com> Date: Sun, 28 May 2023 12:19:11 +0300 Subject: [PATCH] Adds support for python 3.8 --- .github/workflows/ci-test.yml | 5 +++-- poetry.lock | 6 +++--- pyproject.toml | 4 ++-- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index 5ebc265..308d8ba 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -18,12 +18,13 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Set up Python 3.9 + - name: Set up Python 3.8 uses: actions/setup-python@v3 with: - python-version: "3.9" + python-version: "3.8" - name: Install dependencies run: | + export POETRY_VERSION=1.4.2 curl -sSL https://install.python-poetry.org | python3 - poetry install --no-ansi --no-root - name: Lint with ruff diff --git a/poetry.lock b/poetry.lock index faa822d..77a16e8 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.4.0 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.4.2 and should not be changed by hand. [[package]] name = "attrs" @@ -604,5 +604,5 @@ testing = ["coverage (>=6.2)", "coverage-enable-subprocess (>=1)", "flaky (>=3.7 [metadata] lock-version = "2.0" -python-versions = "^3.9" -content-hash = "f09ac94b4eeaa7fa35db71f2cebbbe049145d2a07dc07d9040aec36298ae85e8" +python-versions = "^3.8" +content-hash = "81886dda40d2c1e2f81f5e424fa139dd5e4f873fcb6081ee1174302a3da5a336" diff --git a/pyproject.toml b/pyproject.toml index 19d3ee2..e4ceb5a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pytest-lazy-fixtures" -version = "1.0.0" +version = "1.0.1" description = "Allows you to use fixtures in @pytest.mark.parametrize." authors = ["Petrov Anton "] readme = "README.md" @@ -10,7 +10,7 @@ repository = "https://github.com/dev-petrov/pytest-lazy-fixtures" keywords = ["tests", "pytest", "lazy", "fixture"] [tool.poetry.dependencies] -python = "^3.9" +python = "^3.8" pytest = "^7.2.1" [tool.poetry.group.dev.dependencies]