Skip to content

Commit 8c1809a

Browse files
authored
Merge pull request #215 from pytest-dev/remove-py37-compat-tag
Declare dependency to python >= 3.7
2 parents 7544eca + e98d47f commit 8c1809a

File tree

4 files changed

+6
-103
lines changed

4 files changed

+6
-103
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
- name: Install poetry
4545
run: |
46-
python -m pip install poetry==1.6.1
46+
python -m pip install poetry==1.8.2
4747
4848
- name: Configure poetry
4949
run: |

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ Changelog
33

44
Unreleased
55
----------
6+
- 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>`_
67

78
2.6.1
89
----------

poetry.lock

Lines changed: 3 additions & 101 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ classifiers = [
3131
"pytest-factoryboy" = "pytest_factoryboy.plugin"
3232

3333
[tool.poetry.dependencies]
34-
python = ">=3.7"
34+
python = ">=3.8"
3535
inflection = "*"
3636
factory_boy = ">=2.10.0"
3737
pytest = ">=6.2"

0 commit comments

Comments
 (0)