mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 01:43:36 +01:00
7c3aa9477f
v4.0 no longer works for me (see below, and widely reported elsewhere). v5.0 doesn't understand f strings, and creates a flood of complaints. v6.0 requires python >= 3.8.1, so we need to update that. v7.0 is the latest, but why push it. ``` make check-python-flake8 Traceback (most recent call last): File "/home/rusty/.cache/pypoetry/virtualenvs/cln-meta-project-BgKQHyxC-py3.12/bin/flake8", line 8, in <module> sys.exit(main()) ^^^^^^ File "/home/rusty/.cache/pypoetry/virtualenvs/cln-meta-project-BgKQHyxC-py3.12/lib/python3.12/site-packages/flake8/main/cli.py", line 22, in main app.run(argv) File "/home/rusty/.cache/pypoetry/virtualenvs/cln-meta-project-BgKQHyxC-py3.12/lib/python3.12/site-packages/flake8/main/application.py", line 375, in run self._run(argv) File "/home/rusty/.cache/pypoetry/virtualenvs/cln-meta-project-BgKQHyxC-py3.12/lib/python3.12/site-packages/flake8/main/application.py", line 363, in _run self.initialize(argv) File "/home/rusty/.cache/pypoetry/virtualenvs/cln-meta-project-BgKQHyxC-py3.12/lib/python3.12/site-packages/flake8/main/application.py", line 343, in initialize self.find_plugins(config_finder) File "/home/rusty/.cache/pypoetry/virtualenvs/cln-meta-project-BgKQHyxC-py3.12/lib/python3.12/site-packages/flake8/main/application.py", line 157, in find_plugins self.check_plugins = plugin_manager.Checkers(local_plugins.extension) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/rusty/.cache/pypoetry/virtualenvs/cln-meta-project-BgKQHyxC-py3.12/lib/python3.12/site-packages/flake8/plugins/manager.py", line 363, in __init__ self.manager = PluginManager( ^^^^^^^^^^^^^^ File "/home/rusty/.cache/pypoetry/virtualenvs/cln-meta-project-BgKQHyxC-py3.12/lib/python3.12/site-packages/flake8/plugins/manager.py", line 243, in __init__ self._load_entrypoint_plugins() File "/home/rusty/.cache/pypoetry/virtualenvs/cln-meta-project-BgKQHyxC-py3.12/lib/python3.12/site-packages/flake8/plugins/manager.py", line 261, in _load_entrypoint_plugins eps = importlib_metadata.entry_points().get(self.namespace, ()) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ AttributeError: 'EntryPoints' object has no attribute 'get' make: *** [Makefile:535: check-python-flake8] Error 1 ``` Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
40 lines
1.3 KiB
TOML
40 lines
1.3 KiB
TOML
[tool.poetry]
|
|
package-mode=false
|
|
name = "cln-meta-project"
|
|
version = "0.1.0"
|
|
description = "Just a helper to get our python dependencies under control"
|
|
authors = ["Christian Decker <cdecker@blockstream.com>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
# Build dependencies belong here
|
|
python = ">=3.8.1,<4.0"
|
|
pyln-client = { path = "contrib/pyln-client", develop = true }
|
|
pyln-proto = { path = "contrib/pyln-proto", develop = true }
|
|
pyln-grpc-proto = { path = "contrib/pyln-grpc-proto", develop = true }
|
|
clnrest = { path = "plugins/clnrest", develop = true }
|
|
wss-proxy = { path = "plugins/wss-proxy", develop = true }
|
|
Mako = "^1.1.6"
|
|
websocket-client = "^1.2.3"
|
|
grpcio-tools = "^1"
|
|
grpcio = "^1"
|
|
# We want a specific version of protobuf to match CI's .github/scripts/setup.sh
|
|
protobuf = "4.21.12"
|
|
cryptography = "^41.0.2"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
# Test dependencies and inherited dependencies belong here
|
|
crc32c = "^2.2.post0" # Belongs to lnprototest
|
|
pytest-xdist = "^2.5.0"
|
|
pytest-test-groups = "^1.0.3"
|
|
pytest-timeout = "^2.1.0"
|
|
flake8 = "^6.0"
|
|
mypy = "^0.931"
|
|
pytest-custom-exit-code = "0.3.0"
|
|
pyln-testing = { path = "./contrib/pyln-testing", develop = true, extras = [ "grpc" ] }
|
|
flaky = "^3.7.0"
|
|
requests = "^2.31.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|