Skip to content

Commit

Permalink
Merge pull request #215 from pytest-dev/remove-py37-compat-tag
Browse files Browse the repository at this point in the history
Declare dependency to python >= 3.7
  • Loading branch information
youtux authored Mar 5, 2024
2 parents 7544eca + e98d47f commit 8c1809a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 103 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

- name: Install poetry
run: |
python -m pip install poetry==1.6.1
python -m pip install poetry==1.8.2
- name: Configure poetry
run: |
Expand Down
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Changelog

Unreleased
----------
- Declare required python version >= 3.8. (python 3.7 support was already removed in 2.6.0, the declared supported version tag was not updated though). `#215 <https://github.com/pytest-dev/pytest-factoryboy/pull/215>`_

2.6.1
----------
Expand Down
104 changes: 3 additions & 101 deletions poetry.lock

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

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ classifiers = [
"pytest-factoryboy" = "pytest_factoryboy.plugin"

[tool.poetry.dependencies]
python = ">=3.7"
python = ">=3.8"
inflection = "*"
factory_boy = ">=2.10.0"
pytest = ">=6.2"
Expand Down

0 comments on commit 8c1809a

Please sign in to comment.