Skip to content

Commit

Permalink
Adds support for python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-petrov committed May 28, 2023
1 parent 9ce9df2 commit fa94396
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <antonp2@yandex.ru>"]
readme = "README.md"
Expand All @@ -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]
Expand Down

0 comments on commit fa94396

Please sign in to comment.