Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pins and update for UV usage #255

Merged
merged 1 commit into from
Jan 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 37 additions & 15 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,27 +17,49 @@ name = "ethstaker_deposit"
description = "Secure key generation for deposits"
readme = "README.md"
dependencies = [
"click",
"eth-typing",
"eth-utils",
"pycryptodome",
"pyperclip",
"py-ecc",
"ssz"
"click==8.1.8",
"eth-typing==5.0.1",
"eth-utils==5.1.0",
"pycryptodome==3.21.0",
"pyperclip==1.9.0",
"py-ecc==7.0.1",
"ssz==0.5.1",
"cached-property==2.0.1",
"colorama==0.4.6 ; sys_platform == 'win32'",
"cytoolz==1.0.1",
"eth-hash==0.7.0",
"hexbytes==1.2.1",
"lru-dict==1.3.0",
"pyrsistent==0.20.0",
"six==1.17.0",
"toolz==1.0.0",
"typing-extensions==4.12.2",
]
requires-python = ">=3.9,<4"
dynamic = ["version"]

[project.optional-dependencies]
test = [
"exceptiongroup", # pip-compile did not pick up from mypy
"flake8",
"jsonschema",
"mypy",
"pytest",
"pytest-asyncio",
"coverage",
"tomli" # pip-compile did not pick up from mypy
"exceptiongroup==1.2.2",
"flake8==7.1.1",
"jsonschema==4.23.0",
"mypy==1.14.1",
"pytest==8.3.4",
"pytest-asyncio==0.25.1",
"coverage==7.6.10",
"tomli==2.2.1",
"attrs==24.2.0",
"iniconfig==2.0.0",
"jsonschema-specifications==2023.12.1",
"mccabe==0.7.0",
"mypy-extensions==1.0.0",
"packaging==24.1",
"pluggy==1.5.0",
"pycodestyle==2.12.1",
"pyflakes==3.2.0",
"referencing==0.35.1",
"rpds-py==0.20.0",
"typing-extensions==4.12.2",
]

[project.urls]
Expand Down
6 changes: 0 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
#
# This file is autogenerated by pip-compile with Python 3.12
# by the following command:
#
# pip-compile --generate-hashes --no-annotate
#
cached-property==2.0.1 \
--hash=sha256:484d617105e3ee0e4f1f58725e72a8ef9e93deee462222dbd51cd91230897641 \
--hash=sha256:f617d70ab1100b7bcf6e42228f9ddcb78c676ffa167278d9f730d1c2fba69ccb
Expand Down
10 changes: 0 additions & 10 deletions requirements_test.in

This file was deleted.

6 changes: 0 additions & 6 deletions requirements_test.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
#
# This file is autogenerated by pip-compile with Python 3.12
# by the following command:
#
# pip-compile --generate-hashes --no-annotate --output-file=requirements_test.txt requirements_test.in
#
attrs==24.2.0 \
--hash=sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346 \
--hash=sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2
Expand Down
Loading
Loading