Skip to content

Commit

Permalink
misc: Shut dependabot up again
Browse files Browse the repository at this point in the history
  • Loading branch information
cdecker committed Feb 8, 2024
1 parent a87643f commit 50e54a4
Show file tree
Hide file tree
Showing 10 changed files with 2,363 additions and 1,949 deletions.
505 changes: 293 additions & 212 deletions Cargo.lock

Large diffs are not rendered by default.

423 changes: 217 additions & 206 deletions contrib/pyln-grpc-proto/poetry.lock

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions contrib/pyln-grpc-proto/pyln/grpc/node_pb2.py

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

1 change: 1 addition & 0 deletions contrib/pyln-grpc-proto/pyln/grpc/primitives_pb2.py

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

2 changes: 1 addition & 1 deletion contrib/pyln-proto/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ python = "^3.8"
base58 = "^2.1.1"
bitstring = "^4.1.0"
coincurve = "^18"
cryptography = "^41"
cryptography = "^42"
PySocks = "^1"

[tool.poetry.dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion contrib/pyln-testing/pyln/testing/btcproxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def _handle_request(self, r):

# If we have set a mock for this method reply with that instead of
# forwarding the request.
if method in self.mocks and type(self.mocks[method]) == dict:
if method in self.mocks and self.mocks[method] is dict:
ret = {}
ret['id'] = r['id']
ret['error'] = None
Expand Down
958 changes: 571 additions & 387 deletions plugins/clnrest/poetry.lock

Large diffs are not rendered by default.

865 changes: 500 additions & 365 deletions plugins/clnrest/requirements.txt

Large diffs are not rendered by default.

1,544 changes: 773 additions & 771 deletions poetry.lock

Large diffs are not rendered by default.

11 changes: 5 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,25 @@ authors = ["Christian Decker <[email protected]>"]

[tool.poetry.dependencies]
# Build dependencies belong here
python = "^3.8"
python = "^3.8.1"
pyln-client = { path = "contrib/pyln-client", develop = true }
pyln-proto = { path = "contrib/pyln-proto", develop = true }
clnrest = { path = "plugins/clnrest", develop = true }
Mako = "^1.1.6"
Mako = "^1.3.2"
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"
protobuf = "=4.25.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 = "^4.0.1"
mypy = "^0.931"
flake8 = "^7"
mypy = "^1"
pytest-custom-exit-code = "0.3.0"
pyln-testing = { path = "./contrib/pyln-testing", develop = true, extras = [ "grpc" ] }
flaky = "^3.7.0"
Expand Down

0 comments on commit 50e54a4

Please sign in to comment.