Skip to content

Commit 28975c5

Browse files
committed
make backwards compatible with poetry 1.8.5
1 parent 420a9fb commit 28975c5

File tree

2 files changed

+49
-49
lines changed

2 files changed

+49
-49
lines changed

poetry.lock

+34-35
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+15-14
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
1-
[project]
1+
[tool.poetry]
22
name = "tests"
33
version = "0.1.1"
44
description = "smaug tests"
5-
authors = [{ name = "Chris Guida", email = "chrisguida@gmail.com" }]
6-
license = { text = "MIT" }
7-
requires-python = ">=3.9,<4.0" # Explicitly prevent Poetry from considering Python 4.0
8-
dependencies = [
9-
"black>=23.12.1",
10-
"flake8>=7.0.0",
11-
"isort>=5.13.2",
12-
"pre-commit>=3.6.0",
13-
"pyln-testing>=24.8.2",
14-
"pytest>=7.1.2",
15-
"pytest-timeout>=2.1.0",
16-
"pytest-xdist>=3.6"
17-
]
5+
authors = ["Chris Guida <chrisguida@gmail.com>"]
6+
license = "MIT"
7+
readme = "README.md"
8+
9+
[tool.poetry.dependencies]
10+
python = ">=3.9,<4.0"
11+
black = "^23.12.1"
12+
flake8 = "^7.0.0"
13+
isort = "^5.13.2"
14+
pre-commit = "^3.6.0"
15+
pyln-testing = "^24.8.2"
16+
pytest = "^7.1.2"
17+
pytest-timeout = "^2.1.0"
18+
pytest-xdist = "^3.6"
1819

1920
[build-system]
2021
requires = ["poetry-core>=1.0.0"]

0 commit comments

Comments
 (0)