Skip to content

Commit 79e6fa0

Browse files
committed
Bump poetry to version 2.0.0
1 parent 7d6dc57 commit 79e6fa0

File tree

3 files changed

+44
-17
lines changed

3 files changed

+44
-17
lines changed

.github/workflows/main.yml

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

4848
- name: Install poetry
4949
run: |
50-
python -m pip install poetry==1.8.3
50+
python -m pip install poetry==2.0.0
5151
5252
- name: Configure poetry
5353
run: |

poetry.lock

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

pyproject.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
[tool.poetry]
1+
[project]
22
name = "pytest-factoryboy"
33
version = "2.7.0"
44
description = "Factory Boy support for pytest."
5-
authors = ["Oleg Pidsadnyi <[email protected]>"]
6-
maintainers = ["Alessio Bogon <[email protected]>"]
5+
authors = [ { name = "Oleg Pidsadnyi", email= "[email protected]" } ]
6+
maintainers = [ { name = "Alessio Bogon", email = "[email protected]" } ]
77
license = "MIT"
88
readme = "README.rst"
99
homepage = "https://pytest-factoryboy.readthedocs.io/"
@@ -27,25 +27,25 @@ classifiers = [
2727
"Programming Language :: Python :: 3.12",
2828
"Programming Language :: Python :: 3.13",
2929
]
30+
requires-python = ">=3.8"
31+
dependencies = [
32+
"inflection",
33+
"factory_boy>=2.10.0",
34+
"pytest>=7.0",
35+
"typing_extensions",
36+
"packaging",
37+
]
3038

31-
[tool.poetry.plugins."pytest11"]
39+
[project.entry-points."pytest11"]
3240
"pytest-factoryboy" = "pytest_factoryboy.plugin"
3341

34-
[tool.poetry.dependencies]
35-
python = ">=3.8"
36-
inflection = "*"
37-
factory_boy = ">=2.10.0"
38-
pytest = ">=7.0"
39-
typing_extensions = "*"
40-
packaging = "*"
41-
4242
[tool.poetry.group.dev.dependencies]
4343
mypy = ">=1.4.1"
4444
tox = ">=4.0.8"
4545
coverage = {extras = ["toml"], version = ">=6.5.0"}
4646

4747
[build-system]
48-
requires = ["poetry-core>=1.0.0"]
48+
requires = ["poetry-core (>=2.0.0, <3.0.0)"]
4949
build-backend = "poetry.core.masonry.api"
5050

5151
[tool.black]

0 commit comments

Comments
 (0)